Add or enable some tests.

This commit is contained in:
Rafael Ávila de Espíndola 2011-01-13 18:02:54 -05:00
parent 4ccdece184
commit 3722326cd7
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import foo.bar;
mod foo {
import zed.bar;
mod zed {
fn bar() {
log "foo";
}
}
}
fn main(vec[str] args) {
bar();
}