नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'identifier' : is being defined; cannot add as an anonymous member
Remarks
A class, structure, or union is redefined in its own scope by a member of an anonymous union.
Example
The following example generates C2459:
// C2459.cpp
// compile with: /c
class C {
union { int C; }; // C2459
union { int D; };
};