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