rust/src/test/ui/unrestricted-attribute-toke...

9 lines
121 B
Rust
Raw Normal View History

// compile-pass
#![feature(custom_attribute)]
#[my_attr(a b c d)]
#[my_attr[a b c d]]
#[my_attr{a b c d}]
fn main() {}