pascalabcnet/TestSuite/errors/err0052.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
153 B
ObjectPascal

type TRec2 = record a, b : real; end;
type TRec = record a : integer; r : TRec2; end;
const rec : TRec = (a:2;r:(a:1.3;b:1.5));
begin
rec.a := 34;
end.