mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
11 lines
176 B
Rust
11 lines
176 B
Rust
//@ check-pass
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
trait Common { fn dummy(&self) { } }
|
|
|
|
impl<'t, T> Common for (T, &'t T) {}
|
|
|
|
impl<'t, T> Common for (&'t T, T) {}
|
|
|
|
fn main() {}
|