i current world
if (a instanceof UnknownError || a instanceof UnexpectedError) {
}
Example 1:
if (a instanceof UnknownError|UnexpectedError) {
}
Example 2:
If #7 will be accepted (syntax ver 2), we can do
try {
doStuff();
} catch (e instaceof UnknownError|UnexpectedError) {
}