]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rust-2018/issue-52202-use-suggestions.rs
Remove licenses
[rust.git] / src / test / ui / rust-2018 / issue-52202-use-suggestions.rs
1 // edition:2018
2
3 // The local `use` suggestion should start with `crate::` (but the
4 // standard-library suggestions should not, obviously).
5
6 mod plumbing {
7     pub struct Drain;
8 }
9
10 fn main() {
11     let _d = Drain {};
12     //~^ ERROR cannot find struct, variant or union type `Drain` in this scope
13 }