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