Bof*_*ofA 13 delphi generics delphi-xe2
此单元无法使用"[DCC致命错误] Test.pas(22)在XE2 Update 3中编译:F2084内部错误:URW1147"
unit Test;
interface
type
TSorter<T> = procedure(var Values: array of T);
TTest = class
public
procedure Sort<T>(const Sorter: TSorter<T>);
end;
implementation
procedure TTest.Sort<T>(const Sorter: TSorter<T>);
begin
end;
end.
Run Code Online (Sandbox Code Playgroud)
我已提交质量控制报告:QC#103671.
有没有人对此有解决方法?