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