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

11 lines
204 B
D

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