rust/tests/ui/error-codes/E0453.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
666 B
Plaintext
Raw Normal View History

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
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
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`.