mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-19 11:43:39 -04:00
13 lines
193 B
Rust
13 lines
193 B
Rust
// 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);
|
|
}
|