mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
14 lines
137 B
D
14 lines
137 B
D
module union3;
|
|
|
|
union vec3
|
|
{
|
|
struct { float x,y,z; }
|
|
float[3] xyz;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
vec3 v;
|
|
assert(&v.y is &v.xyz[1]);
|
|
}
|