test: Swap the order of two imports in import6 to eliminate a cycle

This commit is contained in:
Patrick Walton 2012-06-25 14:57:25 -07:00
parent 7e6cbf7431
commit d8410c7578

View File

@ -1,5 +1,5 @@
import bar::baz;
import foo::zed;
import bar::baz;
mod foo {
mod zed {
fn baz() { #debug("baz"); }