summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-mod/use-mod-3.rs
blob: 0afa486b9f7a4e658ea41ace1e683eadd03c98d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use foo::bar::{ //~ ERROR module `bar` is private
    self
};
use foo::bar::{ //~ ERROR module `bar` is private
    Bar
};

mod foo {
    mod bar { pub type Bar = isize; }
}

fn main() {}