1
Fork 0

Reformat for new syntax

This commit is contained in:
Marijn Haverbeke 2011-07-27 14:19:39 +02:00
parent 0e3ee39c41
commit df7f21db09
723 changed files with 28622 additions and 31631 deletions

View file

@ -1,15 +1,13 @@
// error-pattern:cyclic import
mod a {
import b::x;
export x;
import b::x;
export x;
}
mod b {
import a::x;
export x;
import a::x;
export x;
fn main() {
auto y = x;
}
}
fn main() { let y = x; }
}