mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-04 13:47:23 +01:00
15 lines
247 B
ObjectPascal
15 lines
247 B
ObjectPascal
{ %OPT=-Sew }
|
|
{ Source provided for Free Pascal Bug Report 2307 }
|
|
{ Submitted by "Sergey Kosarevsky" on 2003-01-03 }
|
|
{ e-mail: netsurfer@au.ru }
|
|
{$WARNINGS ON}
|
|
|
|
Function BugHint:String;
|
|
Begin
|
|
Exit('ResultString');
|
|
End;
|
|
|
|
Begin
|
|
BugHint;
|
|
End.
|