rust/crates/libsyntax2/tests/data/parser/ok/0006_inner_attributes.rs
Aleksey Kladov 7c67612b8a organizize
2018-08-10 22:33:29 +03:00

10 lines
No EOL
236 B
Rust

#![attr]
#![attr(true)]
#![attr(ident)]
#![attr(ident, 100, true, "true", ident = 100, ident = "hello", ident(100))]
#![attr(100)]
#![attr(enabled = true)]
#![enabled(true)]
#![attr("hello")]
#![repr(C, align = 4)]
#![repr(C, align(4))]