d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail301.d
blobf527819559a7e6e479264bb7e6633d9c1b014ab2
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail301.d(11): Error: accessing non-static variable `guard` requires an instance of `bug3305b`
5 fail_compilation/fail301.d(22): Error: template instance `fail301.bug3305!0` error instantiating
6 ---
7 */
9 struct bug3305(alias X = 0)
11 auto guard = bug3305b!(0).guard;
14 struct bug3305b(alias X = 0)
16 bug3305!(X) goo;
17 auto guard = 0;
20 void test()
22 bug3305!(0) a;