blob: 827f0451824e2e75b4c5d761d68359cf8abb3b0b [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice10419.d(12): Error: `arr().length` is not an lvalue and cannot be modified
---
*/
int[] arr() { return []; }
void main()
{
arr().length = 1;
}