1 2 3 4 5 6 7
fn main() { let later: [int]; if true { later = [1]; } else { later = [2]; } log later[0]; }