2019-09-15 04:55:18 -05:00
|
|
|
#[deprcated] //~ ERROR cannot find attribute `deprcated` in this scope
|
2019-06-29 06:06:22 -05:00
|
|
|
fn foo() {}
|
2019-01-25 13:29:47 -06:00
|
|
|
|
2019-09-15 04:55:18 -05:00
|
|
|
#[tests] //~ ERROR cannot find attribute `tests` in this scope
|
2019-06-29 06:06:22 -05:00
|
|
|
fn bar() {}
|
2019-01-25 13:29:47 -06:00
|
|
|
|
2019-06-30 05:00:45 -05:00
|
|
|
#[rustc_err]
|
2019-09-15 04:55:18 -05:00
|
|
|
//~^ ERROR cannot find attribute `rustc_err` in this scope
|
2019-06-30 05:00:45 -05:00
|
|
|
//~| ERROR attributes starting with `rustc` are reserved for use by the `rustc` compiler
|
|
|
|
|
2019-06-29 06:06:22 -05:00
|
|
|
fn main() {}
|