mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-21 17:29:17 +02:00
28 lines
262 B
ObjectPascal
28 lines
262 B
ObjectPascal
|
|
unit tval1;
|
|
|
|
{$mode fpc}
|
|
|
|
interface
|
|
|
|
function TestAllVal1 : boolean;
|
|
|
|
implementation
|
|
|
|
uses
|
|
tvalc;
|
|
|
|
type
|
|
IntegerType = longint;
|
|
|
|
{$i tval.inc}
|
|
|
|
|
|
function TestAllVal1 : boolean;
|
|
begin
|
|
Writeln('Test val for longint type');
|
|
TestAllVal1:=TestAll;
|
|
end;
|
|
|
|
end.
|