//ww:run-exit 5 package main; fn main() i32 = { let t: (int | bool) = 5; match (t) { case let n: int => return n: i32; case bool => return 1; }; };