d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test19809.d
blob3344ef11059e119eb039366d481eb1a7a1160606
1 // https://issues.dlang.org/show_bug.cgi?id=19809
2 mixin template Impl(M...)
4 int opCmp(Object o) { return 0; }
7 class C
9 override
11 int function(int) fp = ((int x) => x);
12 mixin Impl!("x", "y", ((int x) => x));