summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/generic_const_exprs/less_than.rs
blob: 2e9af1bf4f0bde085d717f7b062e67d1303ba883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]

struct Foo<const B: bool>;

fn test<const N: usize>() -> Foo<{ N > 10 }> where Foo<{ N > 10 }>: Sized {
    Foo
}

fn main() {
    let _: Foo<true> = test::<12>();
    let _: Foo<false> = test::<9>();
}