summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/class-deduction1.C
blob: 87fced9ac38a6422a7cde41cf7d957606f247806 (plain)
1
2
3
4
5
6
7
8
9
// { dg-options -std=c++1z }

template <class T>
struct A
{
  A(T);
};

A a (42);