1
Fork 0
rust/src/test/ui/marker_trait_attr/marker-attribute-with-values.rs

16 lines
299 B
Rust
Raw Normal View History

#![feature(marker_trait_attr)]
#[marker(always)]
trait Marker1 {}
//~^^ ERROR attribute must be of the form
#[marker("never")]
trait Marker2 {}
//~^^ ERROR attribute must be of the form
#[marker(key = "value")]
trait Marker3 {}
//~^^ ERROR attribute must be of the form `#[marker]`
fn main() {}