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

14 lines
141 B
ObjectPascal

uses GraphABC;
type TRec2 = record
x : integer;
end;
type TRec = record
a : integer;
b : TRec2;
end;
var
s : TRec := (a:2;b:4);
begin
end.