description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2627 | Compiler Error C2627 | 11/04/2016 |
|
| 7fc6c5ac-c7c9-4f0b-ad52-f52252526458 |
'function' : member function not allowed in anonymous union
An anonymous union cannot have member functions.
The following sample generates C2627:
// C2627.cppintmain() { union { voidf(){} }; // C2627union X { voidf(){} }; }