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