summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/issues/issue-69654-run-pass.rs
blob: 63d7fde78ac8a1852e4a03fe40eda2bed9c192ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
trait Bar<T> {}
impl<T> Bar<T> for [u8; 7] {}

struct Foo<const N: usize> {}
impl<const N: usize> Foo<N>
where
    [u8; N]: Bar<[(); N]>,
{
    fn foo() {}
}

fn main() {
    Foo::foo();
}