Initial release

This commit is contained in:
Pierre Pronchery 2008-03-13 16:30:58 +00:00
parent 07c1ef501d
commit e88ac21c19
2 changed files with 40 additions and 0 deletions

20
src/test/struct.c Normal file
View File

@ -0,0 +1,20 @@
struct {
int a;
int b;
} test1;
struct test2;
struct test3
{
char a;
char b;
};
struct test3;
struct test4
{
float a;
double a;
};

20
src/test/union.c Normal file
View File

@ -0,0 +1,20 @@
union {
int a;
int b;
} test1;
union test2;
union test3
{
char a;
char b;
};
union test3;
union test4
{
float a;
double a;
};