summaryrefslogtreecommitdiff
path: root/tests/test/units/variants/tw26370.pp
blob: ae816390a460caab688bc13d448dc2d0d256fdad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{$mode objfpc}
uses Variants;

procedure test;
var
  Bounds: Array [0..1] of TVarArrayBound;
  V1, V2: Variant;
begin
  Bounds[0].lowbound := 0;
  Bounds[0].elementcount := 1;
  Bounds[1].lowbound := 0;
  Bounds[1].elementcount := 0;
  V1 := VarArrayCreate(@Bounds, 2, varVariant);
  V2 := V1; // <- Exception EVariantBadIndexError!!!!!
end;
 
begin
  test;
end.