summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-keyword.rs
blob: c30c2e06c45577173812bbf7acfead2b1dbea108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Check that imports with nakes super and self don't fail during parsing
// FIXME: this shouldn't fail during name resolution either

mod a {
    mod b {
        use self as A;
        //~^ ERROR `self` imports are only allowed within a { } list
        use super as B;
        //~^ ERROR unresolved import `super` [E0432]
        //~| no `super` in the root
        use super::{self as C};
        //~^ ERROR unresolved import `super` [E0432]
        //~| no `super` in the root
    }
}

fn main() {}