{$ifndef bigfile} {$ifdef fpc} {$mode delphi} {$else fpc} {$define FPC_HAS_TYPE_EXTENDED} {$endif fpc} {$endif bigfile} type {$ifdef FPC_COMP_IS_INT64} comp105 = double; {$else FPC_COMP_IS_INT64} comp105 = comp; {$endif FPC_COMP_IS_INT64} procedure test105(a: word); overload; begin writeln('word called instead of widechar'); end; procedure test105(a: widechar); overload; begin writeln('widechar called instead of word'); halt(1) end; var x105: word; y105: widechar; procedure dotest105; var v: variant; begin try v := x105; test105(v); except on E : TObject do halt(1); end; try v := y105; test105(v); except on E : TObject do halt(1); end; end; {$ifndef bigfile} begin dotest105; end. {$endif not bigfile}