blob: 220c995eedd0572ff77a8e77548db4e7e7ec75ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
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; }
}
|