rust/tests/ui/unresolved/unresolved-asterisk-imports.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
105 B
Rust
Raw Normal View History

use not_existing_crate::*; //~ ERROR unresolved import `not_existing_crate
use std as foo;
fn main() {}