You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
595 B
21 lines
595 B
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
// In addition, if class T has a user-declared constructor (12.1),
|
|
// every non-static data member of class T shall have a name different
|
|
// from T.
|
|
|
|
struct X0 {
|
|
int X0; // okay
|
|
};
|
|
|
|
struct X1 {
|
|
int X1; // expected-note{{hidden by a non-type declaration of 'X1' here}}
|
|
X1(); // expected-error{{must use 'struct' tag to refer to type 'X1' in this scope}} \
|
|
// expected-error{{expected member name or ';' after declaration specifiers}}
|
|
};
|
|
|
|
struct X2 {
|
|
X2();
|
|
float X2; // expected-error{{member 'X2' has the same name as its class}}
|
|
};
|