2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00
Files
python/pyste/example/unions.h
2003-03-19 02:47:30 +00:00

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;
};
}