blob: ccdbb5708176bc85c162cfb7add64a6f505f56d1 [file] [log] [blame]
/*
REQUIRED_ARGS: -m64
TEST_OUTPUT:
---
fail_compilation/fail19898a.d(10): Error: incompatible types for `(__key2) < (__limit3)`: both operands are of type `__vector(int[4])`
---
*/
void f (__vector(int[4]) n)
{
foreach (i; 0 .. n)
cast(void)n;
}