diff options
Diffstat (limited to 'tests/ui/error-codes/E0453.rs')
| -rw-r--r-- | tests/ui/error-codes/E0453.rs | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/tests/ui/error-codes/E0453.rs b/tests/ui/error-codes/E0453.rs new file mode 100644 index 00000000000..ca9573c5b46 --- /dev/null +++ b/tests/ui/error-codes/E0453.rs @@ -0,0 +1,7 @@ +#![forbid(non_snake_case)] + +#[allow(non_snake_case)] +//~^ ERROR allow(non_snake_case) incompatible +//~| ERROR allow(non_snake_case) incompatible +fn main() { +} | 
