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

void foo()
{
  void bar(auto) {} // { dg-error "function-definition|auto|not permitted" }
}

auto i = 0;