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 7a844d6 commit 8d4b89dCopy full SHA for 8d4b89d
1 file changed
tests/promises/vector/constructor.lsts
@@ -7,10 +7,10 @@ assert( safe-alloc-block-count == 0 );
7
mk-vector(type(U8), 2);
8
assert( safe-alloc-block-count == 0 );
9
10
-mk-vector(type(U8), 2).push(123);
+let _01 = mk-vector(type(U8), 2).push(123);
11
12
13
-mk-vector(type(U8), 0).push(123);
+let _02 = mk-vector(type(U8), 0).push(123);
14
15
16
assert( mk-vector(type(U8), 2).push(123).push(45)[0] == 123 );
0 commit comments