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

import y::x;

mod y {
    import x;
    export x;
}

fn main() { }