fpc/tests/tbs/ub0391.pp
2002-01-06 11:46:33 +00:00

20 lines
213 B
ObjectPascal

{$ifdef fpc}{$mode objfpc}{$endif}
unit ub0391;
interface
type
tc2 = class
protected
procedure p1(s:string);
end;
implementation
procedure tc2.p1(s:string);
begin
writeln('string: ',s);
end;
end.