aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/import4.rs
blob: 3e1208f51e701b2fc22e4ffa18130d29a67eb826 (plain) (blame)
1
2
3
4
5
6
7
8
// error-pattern: cyclic import

import zed.bar;
import bar.zed;

fn main(vec[str] args) {
  log "loop";
}