fpc/tests/webtbf/uw4103.pp
peter 216215e737 * test for crash with operator search
git-svn-id: trunk@540 -
2005-06-30 08:41:19 +00:00

32 lines
374 B
ObjectPascal
Executable File

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.