fpc/tests/webtbf/uw4103.pp
2005-12-20 08:11:59 +00:00

32 lines
374 B
ObjectPascal

unit uw4103;
interface
type junk=record
data:string;
end;
operator :=(const s:string) result:junk;
implementation
operator :=(const s:string) result:junk;
begin
result.data:=s;
end;
operator :=(const n:longint) result:junk;
begin
str(n,result.data);
end;
operator :=(const n:cardinal) result:junk;
begin
str(n,result.data);
end;
end.