Skip to content

Commit df687bd

Browse files
committed
Add regression test for issue #83564
1 parent c09d637 commit df687bd

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// edition:2018
2+
3+
// This is a regression test for #83564.
4+
// For some reason, Rust 2018 or higher is required to reproduce the bug.
5+
6+
fn main() {
7+
//~^ HELP consider importing one of these items
8+
let _x = NonZeroU32::new(5).unwrap();
9+
//~^ ERROR failed to resolve: use of undeclared type `NonZeroU32`
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
error[E0433]: failed to resolve: use of undeclared type `NonZeroU32`
2+
--> $DIR/core-std-import-order-issue-83564.rs:8:14
3+
|
4+
LL | let _x = NonZeroU32::new(5).unwrap();
5+
| ^^^^^^^^^^ not found in this scope
6+
|
7+
help: consider importing one of these items
8+
|
9+
LL | use std::num::NonZeroU32;
10+
|
11+
LL | use core::num::NonZeroU32;
12+
|
13+
14+
error: aborting due to previous error
15+
16+
For more information about this error, try `rustc --explain E0433`.

0 commit comments

Comments
 (0)