mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
235 B
Rust
10 lines
235 B
Rust
type Alias = ();
|
|
use Alias::*; //~ ERROR unresolved import `Alias` [E0432]
|
|
|
|
use std::io::Result::*; //~ ERROR unresolved import `std::io::Result` [E0432]
|
|
|
|
trait T {}
|
|
use T::*; //~ ERROR items in traits are not importable
|
|
|
|
fn main() {}
|