aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/error39.C
blob: 431571c12e38b53e28a1712f128c8f61691f2c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/41769

void f(void operator+()); // { dg-error "declaration" }

void g()
{
  try
    {

    }
  catch(void operator+()) // { dg-error "declaration" }
    {
    }
}