dfmt/tests/issue0107.d

16 lines
195 B
D

void msgpackToGValue(MsgValue input)
{
with (MsgValue.Type) switch (input.type)
{
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}