2015-04-23 01:43:46 -05:00
|
|
|
// Deeply indented modules.
|
|
|
|
|
2015-09-20 07:22:12 -05:00
|
|
|
mod foo {
|
|
|
|
mod bar {
|
2016-01-28 00:53:41 -06:00
|
|
|
mod baz {}
|
2015-09-20 07:22:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-23 01:43:46 -05:00
|
|
|
mod foo {
|
|
|
|
mod bar {
|
|
|
|
mod baz {
|
|
|
|
fn foo() {
|
|
|
|
bar()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-28 00:53:41 -06:00
|
|
|
mod qux {}
|
2015-04-23 01:43:46 -05:00
|
|
|
}
|
2015-09-20 07:22:12 -05:00
|
|
|
|
|
|
|
mod boxed {
|
|
|
|
pub use std::boxed::{Box, HEAP};
|
|
|
|
}
|
2015-10-16 15:05:44 -05:00
|
|
|
|
2015-11-20 15:44:15 -06:00
|
|
|
pub mod x {
|
2017-06-11 23:01:41 -05:00
|
|
|
pub fn freopen(
|
|
|
|
filename: *const c_char,
|
|
|
|
mode: *const c_char,
|
|
|
|
mode2: *const c_char,
|
|
|
|
mode3: *const c_char,
|
|
|
|
file: *mut FILE,
|
|
|
|
) -> *mut FILE {
|
2015-10-16 15:05:44 -05:00
|
|
|
}
|
|
|
|
}
|
2015-11-20 15:44:15 -06:00
|
|
|
|
2019-07-17 09:07:12 -05:00
|
|
|
mod y { // sup boooooiiii
|
2015-11-20 15:44:15 -06:00
|
|
|
}
|