about summary refs log tree commit diff
path: root/tests/ui/parser/attribute/attr-dangling-in-fn.rs
blob: b1436b8d89db8a0096df728d5138db84b80e3752 (plain)
1
2
3
4
5
6
fn f() {
  #[foo = "bar"] //~ ERROR expected statement after outer attribute
}

fn main() {
}