mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 02:27:56 +02:00
15 lines
262 B
ObjectPascal
15 lines
262 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 2659 }
|
|
{ Submitted by "Tomas Hajny" on 2003-08-31 }
|
|
{ e-mail: hajny@freepascal.org }
|
|
{ If the X- is removed then it compiles OK }
|
|
|
|
{$X-}
|
|
|
|
procedure Test (S: string);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
Test (Copy ('A', 1, 1));
|
|
end.
|