rust/src/test/ui/error-codes/E0453.stderr

31 lines
947 B
Plaintext
Raw Normal View History

error[E0453]: allow(non_snake_case) incompatible with previous forbid
2018-12-25 09:56:47 -06:00
--> $DIR/E0453.rs:3:9
2018-02-07 21:35:35 -06:00
|
2018-02-22 18:42:32 -06:00
LL | #![forbid(non_snake_case)]
2018-02-07 21:35:35 -06:00
| -------------- `forbid` level set here
2018-02-24 17:01:39 -06:00
LL |
2018-02-22 18:42:32 -06:00
LL | #[allow(non_snake_case)]
2018-02-07 21:35:35 -06:00
| ^^^^^^^^^^^^^^ overruled by previous forbid
error[E0453]: allow(non_snake_case) incompatible with previous forbid
2020-01-08 11:02:10 -06:00
--> $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
2020-01-08 11:02:10 -06:00
--> $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 3 previous errors
2018-02-07 21:35:35 -06:00
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0453`.