Relate the module hierarchy to directory paths in the parser
Introduces a temporary 'path2' attribute that will replace 'path' after a snapshot
This commit is contained in:
parent
364f9afb64
commit
6e38e334de
9 changed files with 186 additions and 4 deletions
27
src/test/run-pass/mod_dir_path_multi.rs
Normal file
27
src/test/run-pass/mod_dir_path_multi.rs
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// xfail-pretty
|
||||
// xfail-fast
|
||||
|
||||
#[path2 = "mod_dir_simple"]
|
||||
mod biscuits {
|
||||
pub mod test;
|
||||
}
|
||||
|
||||
#[path2 = "mod_dir_simple"]
|
||||
mod gravy {
|
||||
pub mod test;
|
||||
}
|
||||
|
||||
fn main() {
|
||||
assert biscuits::test::foo() == 10;
|
||||
assert gravy::test::foo() == 10;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue