//ww:error "embedded field 'x' collides with existing field" package main; // #59.13: a promoted name colliding with an earlier named field is a // loud reject on both stages (cstage check.c:971-980). type inner = struct { x: i32, y: i32, }; type outer = struct { x: i32, inner, }; fn main() i32 = { return 0; };