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