【发布时间】:2012-02-24 10:52:02
【问题描述】:
此单元无法在 XE2 Update 3 中编译,出现“[DCC 致命错误] Test.pas(22): F2084 Internal Error: 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.
我已提交质检报告:QC#103671。
有人对此有解决方法的想法吗?
【问题讨论】:
标签: delphi generics delphi-xe2