//ww:error "circular type dependency" package main; type a = b; type b = a; export fn main() i32 = { if (size(a) != 8) { return 1; }; return 0; };