Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
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
()
{}