// { dg-do compile { target c++20 } } template concept C = false || V || false; // { dg-error "has type 'int'" } template int f() requires C; int a = f<0>(); // { dg-error "no match" }