blob: 4453049acff0a89f900ff530ced088547a01483f [file]
struct S;
impl S {
fn f() {}
fn g() {
use Self::f; //~ ERROR unresolved import
pub(in Self::f) struct Z; //~ ERROR cannot find `Self`
}
}
fn main() {}