aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/consteval-void1.C
blob: b572650626aaaa6ecbcc2ce62f336e732937affe (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/93257
// { dg-do compile { target c++20 } }

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

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