+ add test for fixed #40077

This commit is contained in:
Sven/Sarah Barth 2023-03-06 23:29:04 +01:00
parent 4823ca7114
commit d6d693696e

23
tests/webtbs/tw40077.pp Normal file
View File

@ -0,0 +1,23 @@
program tw40077;
uses
Generics.Collections, Generics.Defaults;
type
TRec = record
X: Int64;
Y: Int64;
end;
TDict = specialize TObjectDictionary<TRec, TObject>;
var
Dict: TDict;
R: TRec;
begin
Dict := TDict.Create([doOwnsValues]);
R.X := 1;
R.Y := 1;
if not Dict.ContainsKey(R) then // <---------- SIGSEGV here
Dict.Add(R, TObject.Create);
Dict.Free;
end.