mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
250 B
D
14 lines
250 B
D
// https://issues.dlang.org/show_bug.cgi?id=19809
|
|
mixin template Impl(M...)
|
|
{
|
|
int opCmp(Object o) { return 0; }
|
|
}
|
|
|
|
class C
|
|
{
|
|
override
|
|
{
|
|
int function(int) fp = ((int x) => x);
|
|
mixin Impl!("x", "y", ((int x) => x));
|
|
}
|
|
}
|