2017-07-26 23:51:09 -05:00
|
|
|
error[E0453]: allow(unused_variables) overruled by outer forbid(unused)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/outer-forbid.rs:9:9
|
2017-06-23 21:22:06 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
2017-06-23 21:22:06 -05:00
|
|
|
| ------ `forbid` level set here
|
2018-02-24 17:01:39 -06:00
|
|
|
LL |
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #[allow(unused_variables)]
|
2017-07-26 23:51:09 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ overruled by previous forbid
|
2017-06-23 21:22:06 -05:00
|
|
|
|
2017-07-26 23:51:09 -05:00
|
|
|
error[E0453]: allow(unused) overruled by outer forbid(unused)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/outer-forbid.rs:12:9
|
2017-06-23 21:22:06 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
2017-06-23 21:22:06 -05:00
|
|
|
| ------ `forbid` level set here
|
2017-07-26 23:51:09 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #[allow(unused)]
|
2017-07-26 23:51:09 -05:00
|
|
|
| ^^^^^^ overruled by previous forbid
|
2017-06-23 21:22:06 -05:00
|
|
|
|
2018-08-29 08:21:01 -05:00
|
|
|
error[E0453]: allow(nonstandard_style) overruled by outer forbid(non_snake_case)
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/outer-forbid.rs:15:9
|
2017-06-23 21:22:06 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
2017-06-23 21:22:06 -05:00
|
|
|
| -------------- `forbid` level set here
|
2017-07-26 23:51:09 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | #[allow(nonstandard_style)]
|
2018-08-29 08:21:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ overruled by previous forbid
|
2017-06-23 21:22:06 -05:00
|
|
|
|
2017-07-02 08:09:09 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2017-06-23 21:22:06 -05:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0453`.
|