rust/tests/target/mod-1.rs

39 lines
510 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 {
2017-06-12 06:01:41 +02: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-11-20 22:44:15 +01:00
mod y {
// sup boooooiiii
}