rust/tests/target/mod-1.rs

38 lines
558 B
Rust
Raw Normal View History

// Deeply indented modules.
mod foo {
mod bar {
mod baz {}
}
}
mod foo {
mod bar {
mod baz {
fn foo() {
bar()
}
}
}
mod qux {}
}
mod boxed {
pub use std::boxed::{Box, HEAP};
}
2015-11-20 22:44:15 +01:00
pub mod x {
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-11-20 22:44:15 +01:00
mod y {
// sup boooooiiii
}