2025-06-13 02:30:47 +05:00
|
|
|
//! Test that items with identical names can coexist in different modules
|
|
|
|
|
|
2019-07-27 00:54:25 +03:00
|
|
|
//@ run-pass
|
|
|
|
|
|
2018-09-14 12:20:28 +02:00
|
|
|
#![allow(dead_code)]
|
2010-06-25 01:26:44 -07:00
|
|
|
|
|
|
|
|
mod foo {
|
2025-06-13 02:30:47 +05:00
|
|
|
pub fn baz() {}
|
2010-06-25 01:26:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod bar {
|
2025-06-13 02:30:47 +05:00
|
|
|
pub fn baz() {}
|
2010-06-25 01:26:44 -07:00
|
|
|
}
|
|
|
|
|
|
2025-06-13 02:30:47 +05:00
|
|
|
pub fn main() {}
|