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