rust/src/test/compile-fail/import-loop.rs
2012-07-09 10:27:13 -07:00

11 lines
92 B
Rust

// error-pattern:import
import y::x;
mod y {
import x;
export x;
}
fn main() { }