rust/tests/ui/issues/issue-7663.rs
Lukas Wirth eae7fe1bdb Use non-2015 edition paths in tests that do not test for their resolution
This allows for testing these tests on editions other than 2015
2025-06-03 13:35:31 +02:00

33 lines
538 B
Rust

//@ run-pass
#![allow(unused_imports, dead_code)]
mod test1 {
mod foo { pub fn p() -> isize { 1 } }
mod bar { pub fn p() -> isize { 2 } }
pub mod baz {
use crate::test1::bar::p;
pub fn my_main() { assert_eq!(p(), 2); }
}
}
mod test2 {
mod foo { pub fn p() -> isize { 1 } }
mod bar { pub fn p() -> isize { 2 } }
pub mod baz {
use crate::test2::bar::p;
pub fn my_main() { assert_eq!(p(), 2); }
}
}
fn main() {
test1::baz::my_main();
test2::baz::my_main();
}