Suppress fallback and ambiguity errors
If the infcx has observed other errors, then suppress both default type parameter fallback (which can be unreliable, as the full constraint set is not available) and errors related to unresovled variables (annoyingly, integer type variables cannot currently be unified with error, so that has to be a separate mechanism). Also add a flag to `infcx` to allow us to independently indicate when we have observed an error and hence should trigger this suppression mode.
This commit is contained in:
parent
933000613b
commit
ccaa2f855e
13 changed files with 166 additions and 10 deletions
27
src/test/compile-fail/derived-errors/issue-30580.rs
Normal file
27
src/test/compile-fail/derived-errors/issue-30580.rs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// Test that we do not see uninformative region-related errors
|
||||
// when we get some basic type-checking failure. See #30580.
|
||||
|
||||
pub struct Foo { a: u32 }
|
||||
pub struct Pass<'a, 'tcx: 'a>(&'a mut &'a (), &'a &'tcx ());
|
||||
|
||||
impl<'a, 'tcx> Pass<'a, 'tcx>
|
||||
{
|
||||
pub fn tcx(&self) -> &'a &'tcx () { self.1 }
|
||||
fn lol(&mut self, b: &Foo)
|
||||
{
|
||||
b.c; //~ ERROR no field with that name was found
|
||||
self.tcx();
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
27
src/test/compile-fail/derived-errors/issue-31997.rs
Normal file
27
src/test/compile-fail/derived-errors/issue-31997.rs
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
// Test that the resolve failure does not lead to downstream type errors.
|
||||
// See issue #31997.
|
||||
|
||||
trait TheTrait { }
|
||||
|
||||
fn closure<F, T>(x: F) -> Result<T, ()>
|
||||
where F: FnMut() -> T, T: TheTrait,
|
||||
{
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
fn foo() -> Result<(), ()> {
|
||||
try!(closure(|| bar(0 as *mut _))); //~ ERROR unresolved name `bar`
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue