Files
rust/tests/ui/suggestions/attribute-typos.rs

12 lines
337 B
Rust
Raw Normal View History

#[deprcated] //~ ERROR cannot find attribute `deprcated` in this scope
fn foo() {}
#[tests] //~ ERROR cannot find attribute `tests` in this scope
fn bar() {}
2025-03-30 00:39:55 +03:00
#[rustc_dumm]
//~^ ERROR cannot find attribute `rustc_dumm` in this scope
2019-06-30 13:00:45 +03:00
//~| ERROR attributes starting with `rustc` are reserved for use by the `rustc` compiler
fn main() {}