mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 12:32:25 +02:00
21 lines
197 B
ObjectPascal
21 lines
197 B
ObjectPascal
{ %FAIL }
|
|
{$ifdef FPC}
|
|
{$MODE TP}
|
|
{$endif FPC}
|
|
|
|
unit tbug890;
|
|
|
|
INTERFACE
|
|
|
|
procedure GetScreenLine(const x: Integer);
|
|
|
|
IMPLEMENTATION
|
|
|
|
|
|
procedure GetScreenLine(x: Integer);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|