Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
const-generics
/
outer-lifetime-in-const-generic-default.rs
blob: 3018439afa7170e39bfccecd96d0698a7b0eb29d [
file
] [
log
] [
blame
]
struct
Foo
<
'
a
,
const
N
:
usize
=
{
let
x
:
&
'
a
();
//~^ ERROR use of non-static lifetime `'a` in const generic
3
},
>(&
'
a
());
fn
main
()
{}