(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail120.d
/*
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]; };
}