Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
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
()
{}