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