summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/units/system/tval3.pp
blob: 4114408a65c78f8a3c6dd80a9b141b8d17f96f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

unit tval3;

{$mode fpc}

interface

function TestAllval3 : boolean;

implementation

uses
  tvalc;

type
  IntegerType = int64;

{$i tval.inc}


function TestAllval3 : boolean;
begin
  Writeln('Test val for int64 type');
  TestAllval3:=TestAll;
end;

end.