blob: cc9546be2c92168a427906015da4a6a8813ba033 [file] [log] [blame] [edit]
//@ check-fail
struct DataWrapper<'a> {
data: &'a [u8; Self::SIZE], //~ ERROR generic `Self` types are currently not permitted in anonymous constants
}
impl DataWrapper<'_> {
const SIZE: usize = 14;
}
pub fn main() {}