2025-07-13 16:06:48 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/54044
|
2020-07-11 10:29:35 -04:00
|
|
|
#![deny(unused_attributes)] //~ NOTE lint level is defined here
|
|
|
|
|
|
|
|
|
|
#[cold]
|
2025-08-09 20:41:01 +02:00
|
|
|
//~^ ERROR attribute cannot be used on
|
|
|
|
|
//~| WARN previously accepted
|
|
|
|
|
struct Foo;
|
2020-06-14 00:47:42 -04:00
|
|
|
|
|
|
|
|
fn main() {
|
2020-07-11 10:29:35 -04:00
|
|
|
#[cold]
|
2025-08-09 20:41:01 +02:00
|
|
|
//~^ ERROR attribute cannot be used on
|
|
|
|
|
//~| WARN previously accepted
|
|
|
|
|
5;
|
2020-06-14 00:47:42 -04:00
|
|
|
}
|