pascalabcnet/TestSuite/errors/err0124.pas

10 lines
124 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
uses GraphABC;
type TRec = record
a : integer;
b : array[1..3] of char;
end;
var
s : TRec := (a:2;b:(1,2,3,4));
begin
end.