2021-01-30 00:06:00 +00:00
|
|
|
error: allow(unused_variables) incompatible with previous forbid
|
|
|
|
--> $DIR/outer-forbid.rs:20:9
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
|
|
|
| ------ `forbid` level set here
|
2021-01-30 00:06:00 +00:00
|
|
|
...
|
2020-01-08 17:02:10 +00:00
|
|
|
LL | #[allow(unused_variables)]
|
|
|
|
| ^^^^^^^^^^^^^^^^ overruled by previous forbid
|
2021-01-30 00:06:00 +00:00
|
|
|
|
|
2022-09-18 15:55:36 +00:00
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #81670 <https://github.com/rust-lang/rust/issues/81670>
|
2021-01-30 00:06:00 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/outer-forbid.rs:18:11
|
|
|
|
|
|
|
|
|
LL | #![forbid(forbidden_lint_groups)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2020-01-08 17:02:10 +00:00
|
|
|
|
2021-01-30 00:06:00 +00:00
|
|
|
error: allow(unused) incompatible with previous forbid
|
2021-09-04 11:26:25 +00:00
|
|
|
--> $DIR/outer-forbid.rs:25:9
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
|
|
|
| ------ `forbid` level set here
|
|
|
|
...
|
|
|
|
LL | #[allow(unused)]
|
|
|
|
| ^^^^^^ overruled by previous forbid
|
2021-01-30 00:06:00 +00:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #81670 <https://github.com/rust-lang/rust/issues/81670>
|
2020-01-08 17:02:10 +00:00
|
|
|
|
2020-11-07 23:14:38 +00:00
|
|
|
error[E0453]: allow(nonstandard_style) incompatible with previous forbid
|
2021-09-04 11:26:25 +00:00
|
|
|
--> $DIR/outer-forbid.rs:29:9
|
2020-01-08 17:02:10 +00:00
|
|
|
|
|
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
|
|
|
| -------------- `forbid` level set here
|
|
|
|
...
|
|
|
|
LL | #[allow(nonstandard_style)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^ overruled by previous forbid
|
|
|
|
|
2021-09-04 11:26:25 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2017-06-24 02:22:06 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0453`.
|