mirror of
https://github.com/boostorg/python.git
synced 2026-01-26 18:52:26 +00:00
17 lines
176 B
C++
17 lines
176 B
C++
namespace unions {
|
|
|
|
class UnionTest
|
|
{
|
|
public:
|
|
union // unions are not supported for now
|
|
{
|
|
int i;
|
|
short s1;
|
|
short s2;
|
|
} mBad;
|
|
|
|
int mGood;
|
|
};
|
|
|
|
}
|