fpc/tests/test/units/system/tval2.pp
2009-08-16 10:57:52 +00:00

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.