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