rust/src/test/run-pass/mod_file_with_path_attr.rs

10 lines
168 B
Rust
Raw Normal View History

2012-11-09 18:31:44 -06:00
// xfail-pretty
// Testing that a plain .rs file can load modules from other source files
#[path = "mod_file_aux.rs"]
mod m;
fn main() {
assert m::foo() == 10;
}