about summary refs log tree commit diff
path: root/src/test/ui/export-import.rs
blob: 3f543636064e4479cab15f398f12ff6b0c9fa173 (plain)
1
2
3
4
5
6
7
8
9
10
11
use m::unexported;
//~^ ERROR: is private

mod m {
    pub fn exported() { }

    fn unexported() { }
}


fn main() { unexported(); }