mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 18:29:13 +02:00
* extended test
This commit is contained in:
parent
f3266351dc
commit
b55ac2f5c3
@ -14,15 +14,16 @@ type bla=class
|
|||||||
procedure bla.themethod;
|
procedure bla.themethod;
|
||||||
var i : longint;
|
var i : longint;
|
||||||
begin
|
begin
|
||||||
i:=10;
|
i:=12;
|
||||||
flastresponse:=copy(freceivebuffer,1,I-1);
|
flastresponse:=copy(freceivebuffer,1,I-1);
|
||||||
writeln('point 1');
|
writeln('point 1: ',flastresponse);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
var x : bla;
|
var x : bla;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
x:=bla.create;
|
x:=bla.create;
|
||||||
|
x.freceivebuffer:='test string is wrong!';
|
||||||
x.themethod;
|
x.themethod;
|
||||||
writeln('point 2');
|
writeln('point 2');
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user