blob: 70193e8b3bd38056dd59bbb07bdf35668cfde595 [file] [log] [blame] [edit]
//@ known-bug: #131103
struct Struct<const N: i128>(pub [u8; N]);
pub fn function(value: Struct<3>) -> u8 {
value.0[0]
}