fpc/tests/webtbs/tw14347.pp
2015-02-22 20:33:01 +00:00

16 lines
188 B
ObjectPascal

{ %OPT=-Sew -Oodfa }
program Project1;
{$mode objfpc}{$H+}
type
TRec = record a : Integer; end;
PRec = ^TRec;
var
p : PRec;
begin
writeln( sizeof(p^.a)); // warning here!
end.