2014-07-17 17:56:56 -05:00
|
|
|
mod foo {
|
2014-12-30 22:29:22 -06:00
|
|
|
use self::{self};
|
2016-08-22 00:57:10 -05:00
|
|
|
//~^ ERROR unresolved import `self` [E0432]
|
|
|
|
//~| no `self` in the root
|
2014-07-17 17:56:56 -05:00
|
|
|
|
2014-12-30 22:29:22 -06:00
|
|
|
use super::{self};
|
2016-08-22 00:57:10 -05:00
|
|
|
//~^ ERROR unresolved import `super` [E0432]
|
|
|
|
//~| no `super` in the root
|
2014-07-17 17:56:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|