aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900520_05.C
blob: d628ae37f9f0020f1f1f88215dd2b64f992f8b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// g++ 1.37.1 bug 900520_05

// The following legal code gets syntax errors from g++.

// keywords: syntax, unimplemented, operator new, initialization, pointer types

struct struct_0 {
};

char *cp;
static struct_0 *sp;

void test0 ()
{
  new char * (cp);		// gets bogus error
}

void test1 ()
{
  new struct_0 * (sp);		// gets bogus error
}

int main () { return 0; }