]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0453.stderr
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / src / test / ui / error-codes / E0453.stderr
1 error[E0453]: allow(non_snake_case) incompatible with previous forbid
2   --> $DIR/E0453.rs:3:9
3    |
4 LL | #![forbid(non_snake_case)]
5    |           -------------- `forbid` level set here
6 LL | 
7 LL | #[allow(non_snake_case)]
8    |         ^^^^^^^^^^^^^^ overruled by previous forbid
9
10 error[E0453]: allow(non_snake_case) incompatible with previous forbid
11   --> $DIR/E0453.rs:3:9
12    |
13 LL | #![forbid(non_snake_case)]
14    |           -------------- `forbid` level set here
15 LL | 
16 LL | #[allow(non_snake_case)]
17    |         ^^^^^^^^^^^^^^ overruled by previous forbid
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0453`.