aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900119_01.C
blob: 3c93c5259971fcf70d9b98a2c256c0b93ea153df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// g++ 1.36.1 bug 900119_01

// g++ allows initializers to be included in the declaration of members
// of classes, structs, unions (even when -pedantic is used).

// This is not allowed by the C++ 2.0 Reference Manual or by Cfront 2.0.

// keywords: member declaration, member initialization

int global_int;

class class0 {
public:
  int class0_member_0 = 99;			/* ERROR -  */
  static int class0_member_1 = 99;		/* ERROR -  */
  int &class0_member_2 = global_int;		/* ERROR -  */

  class0 () : class0_member_2 (global_int) { }  /* ERROR -  */
};


struct struct0 {
  int struct0_member_0 = 99;			/* ERROR -  */
  static int struct0_member_1 = 99;		/* ERROR -  */
  int &struct0_member_2 = global_int;		/* ERROR -  */

  struct0 () : struct0_member_2 (global_int) { } /* ERROR -  */
};

// g++ does not allow unions to have more than one member with an initializer

union union0 {
  int union0_member_0 = 99;			/* ERROR -  */
};

union union1 {
  //static int union1_member_0 = 99;		/* definitely illegal (9.5) */
};

union union2 {
  int &union2_member_0 = global_int;		/* ERROR -  */

  union2 () : union2_member_0 (global_int) { }  /* ERROR -  */
};

int main () { return 0; }