blob: 2152667be3a377709f51647190cc3ad2eedf2e8c [file] [log] [blame] [edit]
//@ revisions:rpass1
struct Struct<T>(T);
impl<T, const N: usize> Struct<[T; N]> {
fn f() {}
fn g() { Self::f(); }
}
fn main() {
Struct::<[u32; 3]>::g();
}