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

void foo()
{
  struct A
  {
    A(auto) {} // { dg-error "auto|not permitted" }
  };
}