aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp1y/pr58536.C
blob: 05c00b362d5a3170c6b4953ccf4104fe97a75541 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/58536
// { dg-do compile { target c++1y } }
// { dg-options "" }

struct A
{
  A(auto);
};

A::A(auto) {}