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

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

A a (42);