1
Fork 0

Downcase std modules again, move to :: for module dereferencing

This should be a snapshot transition.
This commit is contained in:
Marijn Haverbeke 2011-05-12 17:24:54 +02:00
parent b1d3364487
commit 3816e57fd2
168 changed files with 7643 additions and 7608 deletions

View file

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