summaryrefslogtreecommitdiffstats
path: root/tests/incremental/const-generics/issue-65623.rs
blob: 22bbcbcabed1b7c8363db1dac4f96b89ba034702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// revisions:rpass1
pub struct Foo<T, const N: usize>([T; 0]);

impl<T, const N: usize> Foo<T, {N}> {
    pub fn new() -> Self {
        Foo([])
    }
}

fn main() {
    let _: Foo<u32, 0> = Foo::new();
}