Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
const-generics
/
issue-46511.rs
blob: 71c50e2f3f7f32c47eeb2566379c806516fb8b3f [
file
] [
log
] [
blame
]
// check-fail
struct
Foo
<
'a> //~ ERROR parameter `'
a
`
is never used
[
E0392
]
{
_a
:
[
u8
;
std
::
mem
::
size_of
::<&
'
a
mut
u8
>()]
//~ ERROR a non-static lifetime is not allowed in a `const`
}
pub
fn
main
()
{}