d: Merge upstream dmd 47871363d, druntime, c52e28b7, phobos 99e9c1b77.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7178.d
blob38c4b007684c5a8c05a306bbf6d1e3e8a8a6a98f
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7178.d(10): Error: undefined identifier `contents` in module `fail7178`
5 fail_compilation/fail7178.d(12): Error: mixin `fail7178.populate!int` error instantiating
6 ---
7 */
8 template populate(overloads...)
10 mixin populate!(.contents);
12 public mixin populate!int;