Files
rust/tests/ui/attributes/cold-attribute-application-54044.rs
Jonathan Brouwer 4bb7bf64e0 Update uitests
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
2025-08-14 18:18:42 +02:00

15 lines
315 B
Rust

// 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;
fn main() {
#[cold]
//~^ ERROR attribute cannot be used on
//~| WARN previously accepted
5;
}