rust/src/test/ui/suggestions/attribute-typos.rs

9 lines
245 B
Rust
Raw Normal View History

#[deprcated] //~ ERROR attribute `deprcated` is currently unknown
fn foo() {}
#[tests] //~ ERROR attribute `tests` is currently unknown to the compiler
fn bar() {}
#[rustc_err] //~ ERROR attribute `rustc_err` is currently unknown
fn main() {}