//ww:error "assert: cond must be bool" package main; type myb = bool; export fn main() i32 = { let b: myb = true; assert(b); return 0; };