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

14 lines
301 B
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]; };
}