Fix diagnostics for unresolved patterns
This commit is contained in:
parent
ae33aa74f4
commit
1a374b8d11
2 changed files with 5 additions and 1 deletions
|
|
@ -2408,7 +2408,7 @@ impl<'a, 'tcx> Resolver<'a, 'tcx> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else if let Err(false) = self.resolve_path(pat_id, &path, 0, ValueNS) {
|
||||||
resolve_error(
|
resolve_error(
|
||||||
self,
|
self,
|
||||||
path.span,
|
path.span,
|
||||||
|
|
|
||||||
|
|
@ -42,4 +42,8 @@ fn main() {
|
||||||
//~^ ERROR mismatched types
|
//~^ ERROR mismatched types
|
||||||
//~| expected `char`
|
//~| expected `char`
|
||||||
//~| found `bool`
|
//~| found `bool`
|
||||||
|
|
||||||
|
match () {
|
||||||
|
E::V => {} //~ ERROR failed to resolve. Use of undeclared type or module `E`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue