mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
204 B
D
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; }
|
|
}
|