Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
issues
/
issue-19097.rs
blob: a329ba6f073e2bcac521063c59edf57ebad62b4a [
file
] [
log
] [
blame
]
//@ 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
()
{}