mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
148 B
Plaintext
12 lines
148 B
Plaintext
struct Vector4 @packed @align(4)
|
|
{
|
|
inline float[<4>] value;
|
|
}
|
|
|
|
fn int main(String[] args)
|
|
{
|
|
Vector4 value;
|
|
float[<2>] x = value.xy;
|
|
return 0;
|
|
}
|