1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7424h.d(10): Error: expression `this.g()()` is `void` and has no value
5 ---
6 */
7 struct S7424g
8 {
gS7424g9     @property int g()() { return 0; }
testS7424g10     void test() inout { int f = g; }
11 }
12 
13