rust/src/test/compile-fail/attr-before-stmt.rs

10 lines
89 B
Rust
Raw Normal View History

2011-07-27 07:48:34 -05:00
// error-pattern:expected item
fn f() {
#[foo = "bar"]
let x = 10;
}
fn main() {
}