summaryrefslogtreecommitdiffstats
path: root/src/test/incremental/const-generics/issue-61338.rs
blob: e9d67fee2969af65c0bb55db1f6046ed0780b8ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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();
}