Browse Source

Added a union to the test header to check for compilable generated union wrappers.

Signed-off-by: Dimitar Dobrev <dpldobrev@yahoo.com>
pull/46/head
Dimitar Dobrev 13 years ago
parent
commit
3caecadbbe
  1. 5
      tests/Basic/Basic.h

5
tests/Basic/Basic.h

@ -46,6 +46,11 @@ enum Enum @@ -46,6 +46,11 @@ enum Enum
class DLL_API Hello
{
union {
int i;
float b;
};
public:
Hello ();

Loading…
Cancel
Save