v2 / vlib / v / tests / builtin_arrays / array_fixed_ptr_test.v
11 lines · 9 sloc · 112 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_main() {
2 a := &[2]u8{}
3 dump(a)
4 assert a.len == 2
5}
6
7fn test_empty() {
8 _ := &[2]u8{}
9
10 assert true
11}
12