blob: e48408c468125f648a381957dce83813dd233033 [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; }
}