def foo() -> u32 { return 0; } def main(u32[1] mut a, (u32,) mut b) { a[0] = foo(); b.0 = foo(); return; }