buzz
buzz copied to clipboard
`catch void` to ignore error when type is void
fun willFail() > void !> str {
throw "fail";
}
fun main([str] args) > void {
willFail() catch void;
}