aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/concepts-pr82794.C
blob: b84e9ec45f6d515e7064963618113029dd6ac23a (plain)
1
2
3
4
5
6
7
8
// PR c++/82794
// { dg-do compile { target c++20 } }

template<typename F, typename G = F>
concept Foo = true;

template<Foo fun>
using foo = void;