aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/900208_03.C
blob: 7b7c247d1843e93da3bf5e8dc039631ad5fc82f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do assemble  }
// g++ 1.36.1 bug 900208_03

// The Cfront 2.0 reference manual (5.3.3) says "This type must be an
// object type; functions cannot be allocated this way...".

// g++ fails to detect (at compile time) cases where an attempt is made to
// allocate a function using new.

// keywords: operator new, function types

typedef void (func_type) ();

void global_function_0 ()
{
  new func_type;	// { dg-error "" } missed by both cfront 2.0 and g++ 1.36.1
}

int main () { return 0; }