mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
8 lines
206 B
Rust
8 lines
206 B
Rust
use foo::self; //~ ERROR unresolved import `foo`
|
|
//~^ ERROR `self` imports are only allowed within a { } list
|
|
|
|
use std::mem::self;
|
|
//~^ ERROR `self` imports are only allowed within a { } list
|
|
|
|
fn main() {}
|