Delphi, Update2 is out, go quickly!
bug:
The code is as follows:
PRocedure TForm1.Button1Click(Sender: TObject);
var
strings :TStringList;
begin
if not Assigned(strings) then
begin
strings :=TStringList.Create;
// ShowMessage('sfdasfd'); If you add this or that sentence, there will be no problem, otherwise, haha.
end;
strings.free;
strings := nil;
end;