summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/core-std-import-order-issue-83564.rs
blob: b7fe5af7bf8a1c0191f094940ab8117fd37fa778 (plain)
1
2
3
4
5
6
7
8
9
10
// edition:2018

// This is a regression test for #83564.
// For some reason, Rust 2018 or higher is required to reproduce the bug.

fn main() {
    //~^ HELP consider importing one of these items
    let _x = NonZeroU32::new(5).unwrap();
    //~^ ERROR failed to resolve: use of undeclared type `NonZeroU32`
}