aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.law/operators25.C
blob: e37306492c3decf18af35a8fcdef41925cc1d30a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do assemble  }
// GROUPS passed operators
// opr-new file
// From: gparker@world.std.com (Glenn P Parker)
// Date:     Mon, 25 Jan 1993 20:43:43 -0500
// Subject:  gcc bug
// Message-ID: <199301260143.AA14133@world.std.com>

typedef int (**PPF)(int);

int main(void)
{
  PPF pf2 = new (int (*) (int));     // internal compiler error on this line.

  return 0;
}