(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
consteval-void1.C
// PR c++/93257
// { dg-do compile { target c++20 } }

template <bool, typename>
consteval void test() {}

int main() {
    test<false, int>();
    return 0;
}