rustc/tests/ui/error-codes/E0453.rs
2024-06-19 10:24:51 +02:00

7 lines
113 B
Rust

#![forbid(non_snake_case)]
#[allow(non_snake_case)]
//~^ ERROR allow(non_snake_case) incompatible
fn main() {
}