Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
modules
/
mod_dir_path2.rs
blob: c3e3e1d639e9068ec31f849bfd996f7084b14df6 [
file
] [
log
] [
blame
]
// run-pass
// ignore-pretty issue #37195
#[
path
=
"mod_dir_simple"
]
mod
pancakes
{
#[
path
=
"test.rs"
]
pub
mod
syrup
;
}
pub
fn
main
()
{
assert_eq
!(
pancakes
::
syrup
::
foo
(),
10
);
}