Fix diagnostics for unresolved patterns

This commit is contained in:
Jeffrey Seyfried 2016-04-17 02:37:15 +00:00
parent ae33aa74f4
commit 1a374b8d11
2 changed files with 5 additions and 1 deletions

View file

@ -2408,7 +2408,7 @@ fn resolve_pattern(&mut self,
}
}
}
} else {
} else if let Err(false) = self.resolve_path(pat_id, &path, 0, ValueNS) {
resolve_error(
self,
path.span,

View file

@ -42,4 +42,8 @@ fn main() {
//~^ ERROR mismatched types
//~| expected `char`
//~| found `bool`
match () {
E::V => {} //~ ERROR failed to resolve. Use of undeclared type or module `E`
}
}