dmd/compiler/test/compilable/test17215.d
2022-07-09 18:53:07 +02:00

9 lines
120 B
D

// REQUIRED_ARGS: -O
version (X86_64):
alias vec = __vector(int[4]);
vec binop(vec a)
{
vec b = a;
return b;
}