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