2020-07-11 14:29:35 +00:00
|
|
|
#![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() {
|
2020-07-11 14:29:35 +00:00
|
|
|
#[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
|
|
|
|
}
|