blob: 6352166add529d2dce6f68710742fcb3bce0ca55 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail7424i.d(10): Error: template `this.g()()` has no value
---
*/
struct S7424g
{
@property int g()() immutable { return 0; }
void test() inout { int f = g; }
}