about summary refs log tree commit diff
path: root/src/test/ui/const-generics/issues/issue-76595.rs
blob: 04c019015179e08460e78158dc239b81f022449c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(const_generics, const_evaluatable_checked)]
#![allow(incomplete_features)]

struct Bool<const B: bool>;

trait True {}

impl True for Bool<true> {}

fn test<T, const P: usize>() where Bool<{core::mem::size_of::<T>() > 4}>: True {
    todo!()
}

fn main() {
    test::<2>();
    //~^ ERROR wrong number of generic arguments
}