rust/tests/ui/issues/issue-54044.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
539 B
Rust
Raw Normal View History

#![deny(unused_attributes)] //~ NOTE lint level is defined here
#[cold]
//~^ ERROR attribute should be applied to a function
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2020-06-14 04:47:42 +00:00
struct Foo; //~ NOTE not a function
fn main() {
#[cold]
//~^ ERROR attribute should be applied to a function
//~| WARN this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
2020-06-14 04:47:42 +00:00
5; //~ NOTE not a function
}