Files
rust/tests/ui/attributes/cold-attribute-application-54044.rs

15 lines
315 B
Rust
Raw Normal View History

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