rust/src/test/ui/error-codes/E0453.stderr
Guillaume Gomez 2e104a77cf update tests
2018-03-14 00:53:24 +01:00

12 lines
395 B
Text

error[E0453]: allow(non_snake_case) overruled by outer forbid(non_snake_case)
--> $DIR/E0453.rs:13:9
|
LL | #![forbid(non_snake_case)]
| -------------- `forbid` level set here
LL |
LL | #[allow(non_snake_case)]
| ^^^^^^^^^^^^^^ overruled by previous forbid
error: aborting due to previous error
For more information about this error, try `rustc --explain E0453`.