description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2614 | Compiler Error C2614 | 11/04/2016 |
|
| a550c1d5-8718-4e17-a888-b2619e00fe11 |
'class1' : illegal member initialization: 'class2' is not a base or member
Only member or base classes can appear in the initialization list for a class or structure.
The following sample generates C2614.
// C2614.cpp// compile with: /cstructA { int i; A( int ia ) : B( i ) {}; // C2614 B is not a member of A }; structA2 { int B; int i; A2( int ia ) : B( i ) {}; // OK };