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

10 lines
110 B
ObjectPascal

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