2016-06-10 10:36:21 +00:00
|
|
|
#![feature(stmt_expr_attributes)]
|
|
|
|
|
2019-09-15 12:55:18 +03:00
|
|
|
#[foo] //~ ERROR cannot find attribute `foo` in this scope
|
2015-02-15 17:09:54 +05:30
|
|
|
fn main() {
|
2019-09-15 12:55:18 +03:00
|
|
|
#[foo] //~ ERROR cannot find attribute `foo` in this scope
|
2016-06-10 10:36:21 +00:00
|
|
|
let x = ();
|
2019-09-15 12:55:18 +03:00
|
|
|
#[foo] //~ ERROR cannot find attribute `foo` in this scope
|
2016-06-10 10:36:21 +00:00
|
|
|
x
|
2015-03-09 08:49:10 -07:00
|
|
|
}
|