blob: b572650626aaaa6ecbcc2ce62f336e732937affe [file] [log] [blame]
// PR c++/93257
// { dg-do compile { target c++20 } }
template <bool, typename>
consteval void test() {}
int main() {
test<false, int>();
return 0;
}