/*
TEST_OUTPUT:
---
fail_compilation/fail7424d.d(10): Error: template `this.g()()` has no value
---
*/
struct S7424d
{
    @property int g()() immutable { return 0; }
    void test() const { int f = g; }
}
/*
TEST_OUTPUT:
---
fail_compilation/fail7424d.d(10): Error: template `this.g()()` has no value
---
*/
struct S7424d
{
    @property int g()() immutable { return 0; }
    void test() const { int f = g; }
}