Fix a non-exhaustive match failure.

This commit is contained in:
Lindsey Kuper 2011-06-10 10:57:12 -07:00
parent 7b7c746c1e
commit 3ce82d2e70

View File

@ -731,6 +731,7 @@ fn print_expr(&ps s, &@ast::expr expr) {
case (some(?msg)) {
word(s.s, #fmt("\"%s\"", msg));
}
case (_) {}
}
}
case (ast::expr_break(_)) {