]> git.lizzy.rs Git - rust.git/blob - src/test/ui/item-name-overload.rs
Rollup merge of #87343 - steffahn:fix_unsound_zip_optimization_only_regression_fix...
[rust.git] / src / test / ui / item-name-overload.rs
1 // run-pass
2
3 #![allow(dead_code)]
4
5
6
7 // pretty-expanded FIXME #23616
8
9 mod foo {
10     pub fn baz() { }
11 }
12
13 mod bar {
14     pub fn baz() { }
15 }
16
17 pub fn main() { }