mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 19:27:30 +03:00
eae7fe1bdb
This allows for testing these tests on editions other than 2015
33 lines
538 B
Rust
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();
|
|
}
|