dfmt/tests/otbs/issue0107.d.ref

14 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;
}