Files
rust/tests/ui/parser/attribute/attr-dangling-in-fn.rs

7 lines
94 B
Rust
Raw Normal View History

2011-07-27 14:48:34 +02:00
fn f() {
#[foo = "bar"] //~ ERROR expected statement after outer attribute
2011-07-27 14:48:34 +02:00
}
fn main() {
}