1 /* 2 PERMUTE_ARGS: 3 REQUIRED_ARGS: -m64 4 TEST_OUTPUT: 5 --- 6 fail_compilation/fail19898a.d(11): Error: incompatible types for `(__key2) < (__limit3)`: both operands are of type `__vector(int[4])` 7 --- 8 */ f(__vector (int[4])n)9void f (__vector(int[4]) n) 10 { 11 foreach (i; 0 .. n) 12 cast(void)n; 13 } 14 15