https://issues.dlang.org/show_bug.cgi?id=17344
Issue ID: 17344
Summary: ICE with assignment of post inc-/decremented integral
vector
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Keywords: ice, ice-on-valid-code
Severity: enhancement
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
cat > bug.d << CODE
void test()
{
__vector(int[4]) vec1, vec2;
vec1 = vec2++;
}
CODE
dmd -c bug
----
Internal error: ddmd/backend/cod2.c 4686
----
--
