blob: 3c93c5259971fcf70d9b98a2c256c0b93ea153df [file] [log] [blame]
// 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; }