blob: c9d67a491d87b7d91789c7c48a29d751a44f5487 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail120.d(12): Error: need `this` for `nodes` of type `int[2]`
fail_compilation/fail120.d(13): Error: need `this` for `nodes` of type `int[2]`
---
*/
class Foo
{
int[2] nodes;
auto left = (){ return nodes[0]; };
auto right = (){ return nodes[1]; };
}