mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
177 B
D
11 lines
177 B
D
|
|
static if (__traits(compiles, __vector(long[2])))
|
|
{
|
|
__vector(long[2]) f()
|
|
{
|
|
__vector(long[2]) q;
|
|
return q;
|
|
}
|
|
|
|
enum __vector(long[2]) v = f();
|
|
}
|