about summary refs log tree commit diff
path: root/src/test/compile-fail/import-loop.rs
blob: c5d13ceeecde534e5664446af127f3a4394cfb26 (plain)
1
2
3
4
5
6
7
8
9
10
11
// error-pattern: cyclic import

import y::x;

mod y {
    import x;
    export x;
}

fn main() {
}