921e5a0eb4
From-SVN: r14840
13 lines
105 B
C
13 lines
105 B
C
union foo
|
|
{
|
|
float f;
|
|
int i;
|
|
};
|
|
|
|
foo (int a, float c)
|
|
{
|
|
union foo b;
|
|
b.i = a;
|
|
return b.f + c;
|
|
}
|