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