]> git.lizzy.rs Git - rust.git/blob - tests/ui/modules/mod_dir_path2.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / modules / mod_dir_path2.rs
1 // run-pass
2 // ignore-pretty issue #37195
3
4 #[path = "mod_dir_simple"]
5 mod pancakes {
6     #[path = "test.rs"]
7     pub mod syrup;
8 }
9
10 pub fn main() {
11     assert_eq!(pancakes::syrup::foo(), 10);
12 }