Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-7178.rs
blob: 56ae5139af44c00b42dfe2ec7da353c3fbf303c6 [
file
] [
log
] [
blame
] [
edit
]
pub
struct
Foo
<
'a, A:'
a
>(&
'
a A
);
impl
<
'a, A> Foo<'
a
,
A
>
{
pub
fn
new
(
a
:
&
'a A) -> Foo<'
a
,
A
>
{
Foo
(
a
)
}
}