]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const_evaluatable_checked/unop.rs
Rollup merge of #76867 - poliorcetics:intra-doc-core-iter, r=jyn514
[rust.git] / src / test / ui / const-generics / const_evaluatable_checked / unop.rs
1 // run-pass
2 #![feature(const_generics, const_evaluatable_checked)]
3 #![allow(incomplete_features)]
4
5 struct Foo<const B: bool>;
6
7 fn test<const N: usize>() -> Foo<{ !(N > 10) }> where Foo<{ !(N > 10) }>: Sized {
8     Foo
9 }
10
11 fn main() {
12     let _: Foo<false> = test::<12>();
13     let _: Foo<true> = test::<9>();
14 }