rust/tests/ui/use/use-mod/use-mod-4.rs

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() {}