fpc/tests/webtbf/tw31973.pp
svenbarth eb9b4fb71f * fix for Mantis #31973: resolve dummy symbols earlier and print a nice error message if a generic dummy could not be resolved to an ordinary symbol
+ added test
* adjusted test tw9673 which should have never worked as is (what if TList would have been "of T" instead of "of byte"?)

git-svn-id: trunk@36468 -
2017-06-09 14:41:26 +00:00

24 lines
481 B
ObjectPascal

{ %FAIL }
program tw31973;
{$mode objfpc}{$H+}
uses
Classes, SysUtils
{ you can add units after this },
gutil, gset;
type
TIntegerSetCompare = specialize TLess<Integer>;
TIntegerSet = specialize TSet<Integer, TIntegerSetCompare>;
var
ISet: TIntegerSet;
I: Integer;
Iterator: TSet.TIterator; //should be TIntegerSet.TIterator;
begin
ISet := TIntegerSet.Create();
Iterator := ISet.Find(42); //error2014052306.lpr(20,12) Error: Internal error 2014052306
end.