Home | History | Annotate | Download | only in class.mem
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 // In addition, if class T has a user-declared constructor (12.1),
      4 // every non-static data member of class T shall have a name different
      5 // from T.
      6 
      7 struct X0 {
      8   int X0; // okay
      9 };
     10 
     11 struct X1 {
     12   int X1;
     13   X1(); // expected-error{{declarator requires an identifier}}
     14 };
     15 
     16 struct X2 {
     17   X2();
     18   float X2; // expected-error{{member 'X2' has the same name as its class}}
     19 };
     20