Fix array_structs.reid

This commit is contained in:
Sofia 2025-08-03 00:16:47 +03:00
parent 4ea0913842
commit a6844b919b

View File

@ -21,5 +21,7 @@ fn main() -> u32 {
let mut a = &mut value; let mut a = &mut value;
return *a.second[0]; *a.second[2] = 5;
return *a.second[2];
} }