]> git.lizzy.rs Git - rust.git/blob - src/test/ui/item-name-overload.rs
Merge commit '4236289b75ee55c78538c749512cdbeea5e1c332' into update-rustfmt
[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() { }