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