tree-object-size: use size_for_offset in more cases
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7424i.d
blob4e922d6f5bead9926583cc989a0d3ceeb8b2552e
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7424i.d(10): Error: template `this.g()() immutable` has no value
5 ---
6 */
7 struct S7424g
9 @property int g()() immutable { return 0; }
10 void test() inout { int f = g; }