record aliased field



record_aliased_field
Smart pascal source code
type TMyInt1 = Integer; type TMyInt2 = TMyInt1; type TOther = record i: TMyInt2; end; type TSub = TOther; type TPoint = record x: TMyInt1; y: TSub; procedure P; begin WriteLn(x); WriteLn(', '); WriteLn(y.i); end; end; var P, p2: TPoint; p2.x := 1; p2.y.i := 2; P.P; P := p2; P.P; P.x := P.y.i; P.P; {<<< RESULT - CONSOLE LOG >>> ----------------------------- 0, 0 1, 2 2, 2 ----------------------------- {<<<<<<<<< THE END >>>>>>>>>}