package main; import libb; // Bind each of three's arms (i32, i64, rune) plus the str arm to libb.wide: // typechecks ONLY if all three flattened across the libb.wwi round-trip (#95). export fn main() void = { let a: libb.wide = 1i32; a = 2i64; a = 9i32: rune; a = "z"; return; };