aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/class-deduction57.C
blob: f1c776ec70decf80bc7d26936ae14fd85535b516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR c++/85883
// { dg-do compile { target c++17 } }

template <typename T1, typename T2, typename T3>
struct Bar
{
  Bar(T1, T2, T3) { }
};

int
main ()
{
  auto x = Bar(1, 2, 3);
  auto y = new Bar(3, 4, 5);
}