2018-02-07 21:35:35 -06:00
|
|
|
error[E0453]: allow(non_snake_case) overruled by outer forbid(non_snake_case)
|
|
|
|
--> $DIR/E0453.rs:13:9
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #![forbid(non_snake_case)]
|
2018-02-07 21:35:35 -06:00
|
|
|
| -------------- `forbid` level set here
|
2018-02-24 17:01:39 -06:00
|
|
|
LL |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | #[allow(non_snake_case)]
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^ overruled by previous forbid
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0453"
|