]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use-import-export.rs
Override rustc version in ui and mir-opt tests to get stable hashes
[rust.git] / src / test / ui / use-import-export.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 mod foo {
5     pub fn x() -> isize { return 1; }
6 }
7
8 mod bar {
9     pub fn y() -> isize { return 1; }
10 }
11
12 pub fn main() { foo::x(); bar::y(); }