blob: 0a16ca181f557ea3f90f988c620e8f500aed1d67 [file] [log] [blame]
#![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 type
//~| ERROR constant expression depends
}