We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
match x { A => f(), B => g(), }
This does not work if f and g return different types. Since the return value is discarded, this does not matter. Alternatively:
match x { A => f();, B => g();, }