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

@ -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 */ }
}
}