Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-11384.rs
blob: 0d1cce71958e317f2376917f2e5cc827154e84e5 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}