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