//ww:run package main; let g: (i64 | bool) = 5; fn ck() int = { if (g is i64) { return 0; }; return 12; }; export fn main() int = { return ck(); };