fpc/bugs/bug0220.pp
peter b6f3ac45bf - 201,206
+ 217-221
1999-02-16 00:43:19 +00:00

9 lines
93 B
ObjectPascal

type
a = array[0..100] of char;
var
a1 : a;
s : string;
begin
s:=Copy(a1,1,10);
end.