]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/ice-68875.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / const-generics / ice-68875.rs
CommitLineData
064997fb
FG
1// check-fail
2
3struct DataWrapper<'a> {
4 data: &'a [u8; Self::SIZE], //~ ERROR generic `Self` types are currently not permitted in anonymous constants
5}
6
7impl DataWrapper<'_> {
8 const SIZE: usize = 14;
9}
10
11pub fn main() {}