dmd/compiler/test/fail_compilation/fail7424c.d
2022-07-09 18:53:07 +02:00

11 lines
200 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail7424c.d(10): Error: template `this.g()()` has no value
---
*/
struct S7424c
{
@property int g()() { return 0; }
void test() immutable { int f = g; }
}