You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
program Test;
type
TSample = record
sampleField: integer;
end;
PSample = ^TSample;
functionNewStack(): PSample;
var
sample: PSample;
begin
sample^.sampleField := 0;
end;
beginend.