本机无法在XE2 Update 3中使用“[DCC致命错误] Test.pas(22):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.
我已经提交了QC报告:QC#103671.
有没有人有这方面的解决方法的想法?
解决方法
如果您使用TSorter< T>替换TSorter声明= procedure(var Values:TArray< T>);它在XE上编译好.