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