{$ifdef fpc} {$mode delphi} {$endif fpc} {$ifdef FPC_COMP_IS_INT64} type comp = double; {$endif FPC_COMP_IS_INT64} procedure test(a: shortint); overload; begin writeln('shortint called instead of single'); writeln('XXX') end; procedure test(a: single); overload; begin writeln('single called instead of shortint'); halt(1) end; var v: variant; x: shortint; y: single; begin try v := x; test(v); except on E : TObject do halt(1); end; try v := y; test(v); except on E : TObject do halt(1); end; end.