blob: 081f8b57b6baa33710e1902cb5e3d2368eb4ce68 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail13574.d(21): Error: '$' is not an lvalue
fail_compilation/fail13574.d(27): Error: '$' is not an lvalue
---
*/
struct Foo
{
void opSlice(size_t a, size_t b) { }
alias opDollar = length;
size_t length;
}
void main()
{
Foo foo;
foo[0 .. foo.length = 1];
assert(foo.length == 1);
foo[0 .. $ = 2]; // assigns to the temporary dollar variable
//assert(foo.length == 2);
int[] arr = [1,2,3];
auto x = arr[0 .. arr.length = 1];
assert(arr.length == 1);
auto y = arr[0 .. $ = 2]; // should also be disallowed
//assert(arr.length == 2);
}