Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
user-annotations
/
constant-in-expr-inherent-1.rs
blob: e3a8a5f58dfda6193981ce0cc20d0b41ca1b8b9c [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
<
'a> { x: &'
a u32
}
impl
<
'a> Foo<'
a
>
{
const
C
:
&
'
a u32
=
&
22
;
}
fn
foo
<
'a>(_: &'
a u32
)
->
&
'
static
u32
{
<
Foo
<
'
a
>>::
C
//~ ERROR
}
fn
main
()
{
}