mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-09 10:36:51 +00:00
12 lines
163 B
Rust
12 lines
163 B
Rust
// run-pass
|
|
|
|
#[path = "mod_dir_simple"]
|
|
mod pancakes {
|
|
#[path = "test.rs"]
|
|
pub mod syrup;
|
|
}
|
|
|
|
pub fn main() {
|
|
assert_eq!(pancakes::syrup::foo(), 10);
|
|
}
|