]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/ice-68875.rs
Rollup merge of #105843 - compiler-errors:sugg-const, r=lcnr
[rust.git] / src / test / ui / const-generics / ice-68875.rs
1 // check-fail
2
3 struct DataWrapper<'a> {
4     data: &'a [u8; Self::SIZE], //~ ERROR generic `Self` types are currently not permitted in anonymous constants
5 }
6
7 impl DataWrapper<'_> {
8     const SIZE: usize = 14;
9 }
10
11 pub fn main() {}