Fix missing case in resolve, un-XFAIL rec-tup.rs.

This commit is contained in:
Graydon Hoare 2010-12-08 11:52:34 -08:00
parent 47f0729d38
commit b971d6312e
2 changed files with 2 additions and 0 deletions

View File

@ -542,6 +542,7 @@ TEST_XFAILS_SELF := $(filter-out \
multiline-comment.rs \
readalias.rs \
rec.rs \
rec-tup.rs \
return-nil.rs \
tup.rs \
u32-decr.rs \

View File

@ -105,6 +105,7 @@ fn lookup_name(&env e, ast.ident i) -> option.t[def] {
case (ast.item_mod(_, ?m, _)) {
ret check_mod(i, m);
}
case (_) { /* fall through */ }
}
}