]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail7424h.d
d: Synchronize testsuite with upstream dmd
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7424h.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7424h.d(10): Error: cannot resolve type for this.g()()
5 ---
6 */
7 struct S7424g
8 {
9 @property int g()() { return 0; }
10 void test() inout { int f = g; }
11 }
12