We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4d794e commit a4bcd47Copy full SHA for a4bcd47
compiler/rustc_error_codes/src/error_codes/E0453.md
@@ -8,8 +8,8 @@ Example of erroneous code:
8
9
#[allow(non_snake_case)]
10
fn main() {
11
- let MyNumber = 2; // error: allow(non_snake_case) overruled by outer
12
- // forbid(non_snake_case)
+ // error: allow(non_snake_case) incompatible with previous forbid
+ let MyNumber = 2;
13
}
14
```
15
0 commit comments