mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:49:33 +02:00
14 lines
97 B
ObjectPascal
14 lines
97 B
ObjectPascal
{ %fail }
|
|
|
|
program test;
|
|
|
|
{$mode objfpc}
|
|
{$h+}
|
|
|
|
var
|
|
s: string;
|
|
|
|
begin
|
|
s[1..3] := '123';
|
|
end.
|