Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
user-annotations
/
inherent-associated-constants.rs
blob: fe2641fd63b83ebd5f8962eff40b699cf42d8891 [
file
] [
log
] [
blame
] [
edit
]
struct
A
<
'a>(&'
a
());
impl
A
<
'
static
>
{
const
IC
:
i32
=
10
;
}
fn
non_wf_associated_const
<
'
a
>(
x
:
i32
)
{
A
::<
'
a
>::
IC
;
//~ ERROR lifetime may not live long enough
}
fn
wf_associated_const
<
'
a
>(
x
:
i32
)
{
A
::<
'
static
>::
IC
;
}
fn
main
()
{}