mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
15 lines
136 B
D
15 lines
136 B
D
module union1;
|
|
|
|
union U
|
|
{
|
|
float f;
|
|
int i;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
float f = 2;
|
|
U u = U(f);
|
|
assert(u.i == *cast(int*)&f);
|
|
}
|