2017-07-23 17:15:45 -05:00
|
|
|
use foo::self; //~ ERROR unresolved import `foo`
|
2016-04-15 20:10:59 -05:00
|
|
|
//~^ ERROR `self` imports are only allowed within a { } list
|
2015-02-02 13:04:58 -06:00
|
|
|
|
2017-06-10 04:55:19 -05:00
|
|
|
use std::mem::self;
|
|
|
|
//~^ ERROR `self` imports are only allowed within a { } list
|
|
|
|
|
2015-02-02 13:04:58 -06:00
|
|
|
fn main() {}
|