2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-25 18:32:24 +00:00
Files
python/pyste/tests/unions.h
Bruno da Silva de Oliveira d52f0c7d40 - New tests
[SVN r18629]
2003-05-31 21:18:09 +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;
};
}