1 2 3 4 5 6 7 8
#![feature(untagged_unions)] union U { //~ ERROR recursive type `U` has infinite size a: u8, b: U, } fn main() {}