1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail120.d(12): Error: need 'this' for 'nodes' of type 'int[2]'
5 fail_compilation/fail120.d(13): Error: need 'this' for 'nodes' of type 'int[2]'
6 ---
7 */
8 
9 class Foo
10 {
11     int[2] nodes;
12     auto left = (){ return nodes[0]; };
13     auto right = (){ return nodes[1]; };
14 }
15