2016-03-08 15:54:46 -06:00
|
|
|
type Alias = ();
|
2019-04-01 15:22:12 -05:00
|
|
|
use Alias::*; //~ ERROR unresolved import `Alias` [E0432]
|
|
|
|
|
|
|
|
use std::io::Result::*; //~ ERROR unresolved import `std::io::Result` [E0432]
|
2016-03-08 15:54:46 -06:00
|
|
|
|
2016-03-08 16:27:12 -06:00
|
|
|
trait T {}
|
|
|
|
use T::*; //~ ERROR items in traits are not importable
|
|
|
|
|
2016-03-08 15:54:46 -06:00
|
|
|
fn main() {}
|