mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00

+ added tests The following rules for using these operator overloads as *implicit* overloads apply (Delphi compatible): - if a found assignment operator returns a default ShortString then that is used - if only one assignment operator to a String[x] is found then that is used - otherwise the assignment is not possible The explicit assignment checks for an exact match (and falls back for an implicit assignment). This is not entirely Delphi compatible as Delphi seems to favor the first found symbol in that case, but sometimes also not... :/ git-svn-id: trunk@47634 -
29 lines
530 B
ObjectPascal
29 lines
530 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw38145b;
|
|
{$mode objfpc}{$modeswitch advancedrecords}
|
|
type
|
|
generic TMyWrap<T> = record
|
|
Value: T;
|
|
class operator Explicit(const w: TMyWrap): T;
|
|
class operator :=(const w: TMyWrap): T;
|
|
end;
|
|
|
|
class operator TMyWrap.Explicit(const w: TMyWrap): T;
|
|
begin
|
|
Result := w.Value;
|
|
end;
|
|
|
|
class operator TMyWrap.:=(const w: TMyWrap): T;
|
|
begin
|
|
Result := w.Value;
|
|
end;
|
|
|
|
type
|
|
//TString = string[255]; //compiles
|
|
TString = string[254]; //not compiles
|
|
var
|
|
MySpec: specialize TMyWrap<TString>;
|
|
begin
|
|
end.
|