We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea88c0 commit ea3d140Copy full SHA for ea3d140
cmd/tools/vtest-self.v
@@ -33,7 +33,7 @@ const (
33
]
34
skip_with_fsanitize_undefined = []string{}
35
skip_with_werror = [
36
- 'vlib/builtin/array_test.v',
+ 'vlib/sync/array_rlock_test.v',
37
'vlib/clipboard/clipboard_test.v',
38
'vlib/dl/dl_test.v',
39
'vlib/dl/example/use_test.v',
vlib/builtin/array_test.v
@@ -1064,8 +1064,10 @@ fn test_array_int_pop() {
1064
z := a.pop()
1065
assert a.len == 3
1066
assert z == 4
1067
- a.pop()
1068
+ x1 := a.pop()
+ x2 := a.pop()
1069
+ dump(x1)
1070
+ dump(x2)
1071
final := a.pop()
1072
assert final == 1
1073
}
0 commit comments