dfmt/tests/knr/issue0107.d.ref

15 lines
242 B
Plaintext

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