Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
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
);
}