2020-11-07 18:14:38 -05:00
|
|
|
error[E0453]: allow(non_snake_case) incompatible with previous forbid
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/E0453.rs:3:9
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #![forbid(non_snake_case)]
|
2018-02-07 19:35:35 -08:00
|
|
|
| -------------- `forbid` level set here
|
2022-06-08 21:07:59 +03:00
|
|
|
LL |
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #[allow(non_snake_case)]
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^^^^^^^^^^^^^ overruled by previous forbid
|
|
|
|
|
2020-11-07 18:14:38 -05:00
|
|
|
error[E0453]: allow(non_snake_case) incompatible with previous forbid
|
2020-01-08 20:02:10 +03:00
|
|
|
--> $DIR/E0453.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![forbid(non_snake_case)]
|
|
|
|
| -------------- `forbid` level set here
|
2022-06-08 21:07:59 +03:00
|
|
|
LL |
|
2020-01-08 20:02:10 +03:00
|
|
|
LL | #[allow(non_snake_case)]
|
|
|
|
| ^^^^^^^^^^^^^^ overruled by previous forbid
|
|
|
|
|
2021-02-28 13:24:46 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0453`.
|