blob: 34ce7c719575824133e2db98d9d1b1d25903704e (
plain)
1
2
3
4
5
6
7
|
use crate::foo::self; //~ ERROR unresolved import `crate::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() {}
|