Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
outer-lifetime-in-const-generic-default.rs
blob: de710b0e37d3222411db707e6cab3d3f851effea [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
<
'
a
,
const
N
:
usize
=
{
let
x
:
&
'
a
();
//~^ ERROR generic parameters may not be used in const operations
3
},
>(&
'
a
());
fn
main
()
{}