aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/class-deduction-alias17.C
blob: b8346895b5bd1dcdc63969f7fc20abbdc272e2ca (plain)
1
2
3
4
5
6
7
8
9
// PR c++/109320
// { dg-do compile { target c++20 } }

template<bool B>
struct S {};
template<int... C>
using u = S<true>;
struct X {};
auto a = u {};