v2 / vlib / v / checker / tests / int_ptr_array_index_err.vv
6 lines · 6 sloc · 101 bytes · e5a727c3e103a270601967503a74c984f40c7e35
Raw
1pub fn read_int(bytes []u8, mut offset &int) int {
2 defer {
3 offset += 4
4 }
5 return bytes[offset]
6}
7