null should be possible alternative in case alternatives
It should be possible to use
null
as value in a case alternative:Submitted by Eelco Visser on 30 January 2013 at 18:34
case(e) {
null { “error message” }
1 { … }
default { … }
}
Log in to post comments