d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice13225.d
blobabc30eaf4f2b7d71a5250687388364ecdca8e8c6
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice13225.d(12): Error: mixin `ice13225.S.M!(function (S __param_0) pure nothrow @nogc @safe => 0)` does not match template declaration `M(T)`
5 fail_compilation/ice13225.d(16): Error: undefined identifier `undefined`
6 ---
7 */
8 mixin template M(T) {}
10 struct S
12 mixin M!((typeof(this)) => 0);
14 struct T
16 mixin M!(() => undefined);