mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
176 B
D
11 lines
176 B
D
|
|
static if (__traits(compiles, __vector(float[4])))
|
|
{
|
|
const __vector(float[4]) si = [1f, 1f, 1f, 1f];
|
|
|
|
void main()
|
|
{
|
|
auto arr = si;
|
|
return;
|
|
}
|
|
}
|