2017-07-26 23:51:09 -05:00
|
|
|
error[E0453]: allow(unused_variables) overruled by outer forbid(unused)
|
2017-06-23 21:22:06 -05:00
|
|
|
--> $DIR/outer-forbid.rs:19:9
|
|
|
|
|
|
|
|
|
17 | #![forbid(unused, non_snake_case)]
|
|
|
|
| ------ `forbid` level set here
|
|
|
|
18 |
|
2017-07-26 23:51:09 -05:00
|
|
|
19 | #[allow(unused_variables)]
|
|
|
|
| ^^^^^^^^^^^^^^^^ 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)
|
|
|
|
--> $DIR/outer-forbid.rs:22:9
|
2017-06-23 21:22:06 -05:00
|
|
|
|
|
|
|
|
17 | #![forbid(unused, non_snake_case)]
|
|
|
|
| ------ `forbid` level set here
|
2017-07-26 23:51:09 -05:00
|
|
|
...
|
|
|
|
22 | #[allow(unused)]
|
|
|
|
| ^^^^^^ overruled by previous forbid
|
2017-06-23 21:22:06 -05:00
|
|
|
|
|
|
|
error[E0453]: allow(bad_style) overruled by outer forbid(non_snake_case)
|
2017-07-26 23:51:09 -05:00
|
|
|
--> $DIR/outer-forbid.rs:25:9
|
2017-06-23 21:22:06 -05:00
|
|
|
|
|
|
|
|
17 | #![forbid(unused, non_snake_case)]
|
|
|
|
| -------------- `forbid` level set here
|
2017-07-26 23:51:09 -05:00
|
|
|
...
|
|
|
|
25 | #[allow(bad_style)]
|
|
|
|
| ^^^^^^^^^ 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
|
|
|
|