fpc/tests/webtbs/tw35955.pp
marco 0f4e7b65b2 # revisions: 41843,41844,42700
git-svn-id: branches/fixes_3_2@43396 -
2019-11-05 15:35:13 +00:00

19 lines
261 B
ObjectPascal

{ %NORUN }
program tw35955;
{$mode delphi}
type
TVariantArray = array of Variant;
var
S: string;
A: TVariantArray;
begin
S := 'xyz';
A := [S]; // << project1.lpr(13,8) Error: Compilation raised exception internally
Writeln(A[0]);
Readln;
end.