fpc/tests/webtbs/tw27658.pp
2015-03-15 16:19:58 +00:00

15 lines
252 B
ObjectPascal

{$MODE OBJFPC}
program Project1;
uses gmap;
type
generic TMyMap <TKey, TValue, TCompare> = class(specialize TMap<TKey, TValue, TCompare>)
end;
generic TMyCounter <TKey, TCompare> = class(specialize TMyMap<TKey, SizeUInt, TCompare>)
end;
begin
end.