Files
ldc/test/union1.d
Tomas Lindquist Olsen 9804fe0fa3 [svn r77] Fixed foreach on slice.
Fixed some nested function problems when accessing outer function parameters.
Major changes to handling of structs.
Initial support for unions.
Probably more...
2007-10-31 03:11:32 +01:00

16 lines
172 B
D

module union1;
pragma(LLVM_internal, "notypeinfo")
union U
{
float f;
int i;
}
void main()
{
float f = 2;
U u = U(f);
assert(u.i == *cast(int*)&f);
}