mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
19 lines
261 B
ObjectPascal
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.
|