rust/tests/ui/error-codes/E0453.rs

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

8 lines
159 B
Rust
Raw Normal View History

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