rust/tests/ui/imports/issue-113953.rs

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

7 lines
119 B
Rust
Raw Normal View History

//@ edition: 2021
use u8 as imported_u8;
use unresolved as u8;
//~^ ERROR unresolved import `unresolved`
fn main() {}