d: Merge upstream dmd ff57fec515, druntime ff57fec515, phobos 17bafda79.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7424e.d
blobddf9d1a89b39a167e58f903e77f3e8e1dce59f86
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7424e.d(10): Error: template `this.g()() immutable` has no value
5 ---
6 */
7 struct S7424e
9 @property int g()() immutable { return 0; }
10 void test() { int f = g; }