Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
user-annotations
/
constant-in-expr-trait-item-2.rs
blob: 73c4e577b05c087a16b4e7df73e3f5c6f22b185a [
file
] [
log
] [
blame
] [
edit
]
trait
Foo
<
'
a
>
{
const
C
:
&
'
a u32
;
}
impl
<
'a, T> Foo<'
a
>
for
T
{
const
C
:
&
'
a u32
=
&
22
;
}
fn
foo
<
'a, T: Foo<'
a
>>()
->
&
'
static
u32
{
<
T
as
Foo
<
'
a
>>::
C
//~ ERROR
}
fn
main
()
{
}