mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
199 B
Rust
15 lines
199 B
Rust
// 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() {}
|