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