rust/crates/libsyntax2/tests/data/parser/ok/0006_inner_attributes.rs

10 lines
236 B
Rust
Raw Normal View History

2018-01-07 17:50:54 +01:00
#![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))]