d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail120.d
blobf9ede04fb5d859c0b5b3380982a00f207668df7f
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail120.d(12): Error: accessing non-static variable `nodes` requires an instance of `Foo`
5 fail_compilation/fail120.d(13): Error: accessing non-static variable `nodes` requires an instance of `Foo`
6 ---
7 */
9 class Foo
11 int[2] nodes;
12 auto left = (){ return nodes[0]; };
13 auto right = (){ return nodes[1]; };