rust/src/test/compile-fail/import-loop.rs
2012-09-05 12:32:05 -07:00

11 lines
89 B
Rust

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