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