Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
const-generics
/
ice-68875.rs
blob: 7bf6a824729a38a97e2f627e0c387fedeebd1d83 [
file
]
//@ check-fail
struct
DataWrapper
<
'
a
>
{
data
:
&
'
a
[
u8
;
Self
::
SIZE
],
//~ ERROR generic `Self`
}
impl
DataWrapper
<
'
_
>
{
const
SIZE
:
usize
=
14
;
}
pub
fn
main
()
{}