1
Fork 0
rust/src/test/ui/const-generics/issues/issue-76595.rs

18 lines
383 B
Rust
Raw Normal View History

#![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 this function takes 2 generic arguments but only 1 generic argument was supplied
}