dmd/compiler/test/fail_compilation/ice10419.d
2023-11-13 00:40:35 +01:00

13 lines
202 B
D

/*
TEST_OUTPUT:
---
fail_compilation/ice10419.d(12): Error: cannot modify expression `arr().length` because it is not an lvalue
---
*/
int[] arr() { return []; }
void main()
{
arr().length = 1;
}