summary refs log tree commit diff
path: root/src/test/compile-fail/import4.rs
blob: cf357e8539c788585466e75d6363a40a0805976e (plain)
1
2
3
4
5
6
// error-pattern: import

mod a { import foo = b::foo; export foo; }
mod b { import foo = a::foo; export foo; }

fn main(args: ~[str]) { #debug("loop"); }