fpc/tests/webtbs/tw9419.pp
michael dff39e9ecb * Fix test case
git-svn-id: trunk@36060 -
2017-05-02 14:03:56 +00:00

21 lines
245 B
ObjectPascal

uses
fgl;
type
TEnum = (ta, tb, tc);
TMyMap = specialize TFPGMap<string, TEnum>;
var
map : TMyMap;
c : TEnum;
i : Longint;
begin
map := TMymap.Create();
map.sorted:=true;
map.Add('Hello', ta);
map.Find('Hello', i);
end.