Commit 131aa513 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

vbscript/tests: Fix redim tests.

parent d596f972
......@@ -1562,7 +1562,8 @@ sub TestReDimList
end sub
call TestReDimList
dim rx(4)
dim rx
redim rx(4)
sub TestReDimByRef(byref x)
ok ubound(x) = 4, "ubound(x) = " & ubound(x)
redim x(6)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment