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