rustc_error_codes: Update expected error in E0453.md

This commit is contained in:
Martin Nordholts 2023-12-28 18:55:59 +01:00
parent f4d794ea0b
commit a4bcd479cc

View File

@ -8,8 +8,8 @@ Example of erroneous code:
#[allow(non_snake_case)] #[allow(non_snake_case)]
fn main() { fn main() {
let MyNumber = 2; // error: allow(non_snake_case) overruled by outer // error: allow(non_snake_case) incompatible with previous forbid
// forbid(non_snake_case) let MyNumber = 2;
} }
``` ```