blob: a329ba6f073e2bcac521063c59edf57ebad62b4a [file] [log] [blame] [edit]
//@ check-pass
#![allow(dead_code)]
// regression test for #19097
struct Foo<T>(T);
impl<'a, T> Foo<&'a T> {
fn foo(&self) {}
}
impl<'a, T> Foo<&'a mut T> {
fn foo(&self) {}
}
fn main() {}