blob: da04ec3fd4d651214b2169014446796cc84a427f (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{$ifndef bigfile}
{$ifdef fpc}
{$mode delphi}
{$else fpc}
{$define FPC_HAS_TYPE_EXTENDED}
{$endif fpc}
{$endif bigfile}
type
{$ifdef FPC_COMP_IS_INT64}
comp32 = double;
{$else FPC_COMP_IS_INT64}
comp32 = comp;
{$endif FPC_COMP_IS_INT64}
procedure test32(a: comp32); overload;
begin
writeln('comp32 called instead of char');
end;
procedure test32(a: char); overload;
begin
writeln('char called instead of comp32');
halt(1)
end;
var
x32: comp32;
y32: char;
procedure dotest32;
var
v: variant;
begin
try
v := x32;
test32(v);
except
on E : TObject do
halt(1);
end;
try
v := y32;
test32(v);
except
on E : TObject do
writeln('VVV');
end;
end;
{$ifndef bigfile} begin
dotest32;
end. {$endif not bigfile}
|