mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-06 17:18:45 +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() {}
|