1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/fail7424b.d(10): Error: template `this.g()()` has no value 5 --- 6 */ 7 struct S7424b 8 { 9 @property int g()() { return 0; } 10 void test() const { int f = g; } 11 } 12