]> git.lizzy.rs Git - rust.git/blob - src/test/ui/export-import.rs
Rollup merge of #89468 - FabianWolff:issue-89358, r=jackh726
[rust.git] / src / test / ui / export-import.rs
1 use m::unexported;
2 //~^ ERROR: is private
3
4 mod m {
5     pub fn exported() { }
6
7     fn unexported() { }
8 }
9
10
11 fn main() { unexported(); }