mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
12 lines
232 B
Rust
12 lines
232 B
Rust
mod foo {
|
|
use self::{self};
|
|
//~^ ERROR unresolved import `self` [E0432]
|
|
//~| no `self` in the root
|
|
|
|
use super::{self};
|
|
//~^ ERROR unresolved import `super` [E0432]
|
|
//~| no `super` in the root
|
|
}
|
|
|
|
fn main() {}
|