@@ -22,7 +22,7 @@ error[E0433]: failed to resolve: could not find `Hello` in `another_module`
2222LL | let _: another_module::SomeType = another_module::Hello::new();
2323 | ^^^^^ could not find `Hello` in `another_module`
2424
25- error[E0412 ]: cannot find type `MissingType` in module `self`
25+ error[E0425 ]: cannot find type `MissingType` in module `self`
2626 --> $DIR/compile_error_macro-suppress-errors.rs:15:26
2727 |
2828LL | error: self::MissingType,
@@ -34,13 +34,13 @@ error[E0425]: cannot find function `some_function` in module `another_module`
3434LL | let _ = another_module::some_function();
3535 | ^^^^^^^^^^^^^ not found in `another_module`
3636
37- error[E0412 ]: cannot find type `SomeType` in module `another_module`
37+ error[E0425 ]: cannot find type `SomeType` in module `another_module`
3838 --> $DIR/compile_error_macro-suppress-errors.rs:37:28
3939 |
4040LL | let _: another_module::SomeType = another_module::Hello::new();
4141 | ^^^^^^^^ not found in `another_module`
4242
4343error: aborting due to 7 previous errors
4444
45- Some errors have detailed explanations: E0412, E0425, E0432, E0433.
46- For more information about an error, try `rustc --explain E0412 `.
45+ Some errors have detailed explanations: E0425, E0432, E0433.
46+ For more information about an error, try `rustc --explain E0425 `.
0 commit comments