mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 05:59:30 +02:00
parent
57d0d3a3c5
commit
c1bc1cd94d
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -8624,6 +8624,7 @@ tests/webtbs/tw12050b.pp svneol=native#text/plain
|
||||
tests/webtbs/tw12051.pp svneol=native#text/plain
|
||||
tests/webtbs/tw1207.pp svneol=native#text/plain
|
||||
tests/webtbs/tw12076.pp svneol=native#text/plain
|
||||
tests/webtbs/tw12151.pp svneol=native#text/plain
|
||||
tests/webtbs/tw12186.pp svneol=native#text/plain
|
||||
tests/webtbs/tw12202.pp svneol=native#text/plain
|
||||
tests/webtbs/tw12214.pp svneol=native#text/plain
|
||||
|
10
tests/webtbs/tw12151.pp
Normal file
10
tests/webtbs/tw12151.pp
Normal file
@ -0,0 +1,10 @@
|
||||
uses
|
||||
variants;
|
||||
var
|
||||
Values: OleVariant;
|
||||
mTempNames: string;
|
||||
begin
|
||||
Values := VarArrayCreate([0, 0], varVariant);
|
||||
//this row will cause runtime error
|
||||
Values[0] := VarArrayCreate([0, 1], varByte);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user