about summary refs log tree commit diff
path: root/tests/ui/attributes/cold-attribute-application-54044.rs
blob: 2e644b91c07744f73a685d6d8711cc647d5c4bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// https://github.com/rust-lang/rust/issues/54044
#![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!
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!
    5; //~ NOTE not a function
}