mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
22 lines
666 B
Plaintext
22 lines
666 B
Plaintext
error[E0453]: allow(non_snake_case) incompatible with previous forbid
|
|
--> $DIR/E0453.rs:3:9
|
|
|
|
|
LL | #![forbid(non_snake_case)]
|
|
| -------------- `forbid` level set here
|
|
LL |
|
|
LL | #[allow(non_snake_case)]
|
|
| ^^^^^^^^^^^^^^ overruled by previous forbid
|
|
|
|
error[E0453]: allow(non_snake_case) incompatible with previous forbid
|
|
--> $DIR/E0453.rs:3:9
|
|
|
|
|
LL | #![forbid(non_snake_case)]
|
|
| -------------- `forbid` level set here
|
|
LL |
|
|
LL | #[allow(non_snake_case)]
|
|
| ^^^^^^^^^^^^^^ overruled by previous forbid
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0453`.
|