2017-07-27 04:51:09 +00:00
|
|
|
error[E0453]: allow(unused_variables) overruled by outer forbid(unused)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/outer-forbid.rs:9:9
|
2017-06-24 02:22:06 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
2017-06-24 02:22:06 +00:00
|
|
|
| ------ `forbid` level set here
|
2018-02-24 23:01:39 +00:00
|
|
|
LL |
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[allow(unused_variables)]
|
2017-07-27 04:51:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ overruled by previous forbid
|
2017-06-24 02:22:06 +00:00
|
|
|
|
2017-07-27 04:51:09 +00:00
|
|
|
error[E0453]: allow(unused) overruled by outer forbid(unused)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/outer-forbid.rs:12:9
|
2017-06-24 02:22:06 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
2017-06-24 02:22:06 +00:00
|
|
|
| ------ `forbid` level set here
|
2017-07-27 04:51:09 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[allow(unused)]
|
2017-07-27 04:51:09 +00:00
|
|
|
| ^^^^^^ overruled by previous forbid
|
2017-06-24 02:22:06 +00:00
|
|
|
|
2018-08-29 13:21:01 +00:00
|
|
|
error[E0453]: allow(nonstandard_style) overruled by outer forbid(non_snake_case)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/outer-forbid.rs:15:9
|
2017-06-24 02:22:06 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | #![forbid(unused, non_snake_case)]
|
2017-06-24 02:22:06 +00:00
|
|
|
| -------------- `forbid` level set here
|
2017-07-27 04:51:09 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[allow(nonstandard_style)]
|
2018-08-29 13:21:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ overruled by previous forbid
|
2017-06-24 02:22:06 +00:00
|
|
|
|
2017-07-02 13:09:09 +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`.
|