1
Fork 0
rust/tests/ui/error-codes/E0453.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
113 B
Rust
Raw Normal View History

2016-08-19 16:44:47 +02:00
#![forbid(non_snake_case)]
#[allow(non_snake_case)]
//~^ ERROR allow(non_snake_case) incompatible
2016-08-19 16:44:47 +02:00
fn main() {
}