error[E0432]: unresolved import `foo` --> $DIR/local-path-suggestions-2018.rs:20:9 | LL | use foo::Bar; | ^^^ Did you mean `crate::foo`? | = note: `use` statements changed in Rust 2018; read more at error[E0432]: unresolved import `foo` --> $DIR/local-path-suggestions-2018.rs:27:5 | LL | use foo::Bar; | ^^^ Did you mean `self::foo`? error[E0432]: unresolved import `foobar` --> $DIR/local-path-suggestions-2018.rs:29:5 | LL | use foobar::Baz; | ^^^^^^ Did you mean `baz::foobar`? error: aborting due to 3 previous errors For more information about this error, try `rustc --explain E0432`.