Skip to content

Commit 9b59a87

Browse files
committed
Bless after rebase
1 parent 1472a97 commit 9b59a87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ui/macros/compile_error_macro-suppress-errors.stderr

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ error[E0433]: failed to resolve: could not find `Hello` in `another_module`
2222
LL | 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
|
2828
LL | error: self::MissingType,
@@ -34,13 +34,13 @@ error[E0425]: cannot find function `some_function` in module `another_module`
3434
LL | 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
|
4040
LL | let _: another_module::SomeType = another_module::Hello::new();
4141
| ^^^^^^^^ not found in `another_module`
4242

4343
error: 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

Comments
 (0)