2012-06-01 23:28:55 -05:00
|
|
|
// xfail-win32 don't understand what's wrong
|
2011-10-29 03:21:43 -05:00
|
|
|
// Test that crates and directory modules can contain code
|
|
|
|
|
2011-11-21 22:31:09 -06:00
|
|
|
#[path = "companionmod-src"]
|
|
|
|
mod a {
|
2011-10-29 03:21:43 -05:00
|
|
|
mod b {
|
|
|
|
mod x;
|
|
|
|
}
|
2011-11-21 22:31:09 -06:00
|
|
|
#[path = "d"]
|
|
|
|
mod c {
|
2011-10-29 03:21:43 -05:00
|
|
|
mod x;
|
|
|
|
}
|
2011-11-21 22:31:09 -06:00
|
|
|
}
|