mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
424 B
Rust
18 lines
424 B
Rust
// 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 `c` on type `&Foo`
|
|
self.tcx();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|