dmd/compiler/test/fail_compilation/fail7424i.d
Nick Treleaven 01377d9ab4 Update tests
2023-11-14 18:37:11 +00:00

11 lines
216 B
D

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