]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/mod_dir_recursive.rs
Merge tag 'debian/0.6-0_exp1'
[rustc.git] / src / test / run-pass / mod_dir_recursive.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // xfail-pretty
12 // xfail-fast
13
14 // Testing that the parser for each file tracks its modules
15 // and paths independently. The load_another_mod module should
16 // not try to reuse the 'mod_dir_simple' path.
17
18 mod mod_dir_simple {
19 pub mod load_another_mod;
20 }
21
22 pub fn main() {
23 assert!(mod_dir_simple::load_another_mod::test::foo() == 10);
24 }