blob: e0c7b2814b30e7ea1e0bfabd15421885834a6e4f [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=19840
struct G
{
ubyte[] I;
alias I this;
}
auto M(ubyte[])
{
G N;
return N;
}
struct U { int V; }
void X()
{
func((cast(U[])[].M));
}
void func(U[]) {}