about summary refs log tree commit diff
path: root/tests/ui/use/use-mod/use-mod-4.rs
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() {}