aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900405_01.C
blob: 346db0c556d39789bd12d8ff03077868fabd58d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// g++ 1.37.1 bug 900405_01

// The C++ Reference Manual says (in section 5.4) "Types may not be defined
// in casts."

// g++ fails to flag errors for cases where an attempt is made to define
// a struct, class, union, or enum type within a cast.

// keywords: casts, type definitions, tagged types

void f ()
{
  (enum e { red, green } *) 0;		// ERROR - type defined in cast
  (struct s { int member; } *) 0;	// ERROR - type defined in cast
  (union u { int member; } * ) 0;	// ERROR - type defined in cast
  (class c { int member; } *) 0;	// ERROR - type defined in cast
}

int main () { return 0; }