Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.308 Beiträge
Delphi 12 Athens
|
AW: Interner Fehler URW1163
18. Mai 2015, 12:31
Ein Beispiel, wo ich das beobachtet habe, war das Verwenden von Generics (allerdings nicht wirklich reproduzierbar)
Delphi-Quellcode:
type
TFoo = class
private
FList : TList<TBar>; // Fehler beim Compilieren
FList : TObjectList<TBar>; // Alles OK
public
constructor Create;
end;
constructor TFoo.Create;
begin
inherited;
FList := TObjectList<TBar>.Create; // <--
end;
Variable ... Zuweisung
Ein Therapeut entspricht 1024 Gigapeut.
|