dmd/compiler/test/fail_compilation/ice10419.d
2022-07-09 18:53:07 +02:00

13 lines
189 B
D

/*
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;
}