forward_record_pointer_let_mismatch.toy (95B)
1 record A; 2 record B; 3 4 fn main(): i64 { 5 let b: *B = NULL as *B; 6 let a: *A = b; 7 return 0; 8 }