16 lines
344 B
Rust
16 lines
344 B
Rust
|
//@ check-pass
|
||
|
// #81395: Fix ICE when recursing into Deref target only differing in type args
|
||
|
|
||
|
pub struct Generic<T>(T);
|
||
|
|
||
|
impl<'a> std::ops::Deref for Generic<&'a mut ()> {
|
||
|
type Target = Generic<&'a ()>;
|
||
|
fn deref(&self) -> &Self::Target {
|
||
|
unimplemented!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl<'a> Generic<&'a ()> {
|
||
|
pub fn some_method(&self) {}
|
||
|
}
|