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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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() {
}