mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 07:08:14 +00:00
7 lines
168 B
Rust
7 lines
168 B
Rust
type Alias = ();
|
|
use Alias::*; //~ ERROR unresolved import `Alias` [E0432]
|
|
|
|
use std::io::Result::*; //~ ERROR unresolved import `std::io::Result` [E0432]
|
|
|
|
fn main() {}
|