]> git.lizzy.rs Git - rust.git/blob - src/test/ui/modules/mod_dir_path2.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / 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 }