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

8 lines
220 B
Rust
Raw Normal View History

use crate::foo::self; //~ ERROR unresolved import `crate::foo`
//~^ ERROR `self` imports are only allowed within a { } list
2015-02-02 11:04:58 -08:00
use std::mem::self;
//~^ ERROR `self` imports are only allowed within a { } list
2015-02-02 11:04:58 -08:00
fn main() {}