fpc/tests/webtbs/tw4229a.pp
Jonas Maebe bc06fd4d74 * fixed mantis #6152 (allow overloads to be defined before all
forwarddefs have been implemented)

git-svn-id: trunk@5995 -
2007-01-15 21:59:43 +00:00

27 lines
437 B
ObjectPascal

{ %fail }
{ %norun}
{ Source provided for Free Pascal Bug Report 4229 }
{ Submitted by "Gerhard" on 2005-07-28 }
{ e-mail: gs@g--s.de }
unit tw4229a ;
interface
type
strobj = object
bs : string ;
ba : ansistring ;
end ;
operator := ( const a : ansistring ) z : strobj ;
implementation
operator := ( const s : string ) z : strobj ;
begin
z.bs := s ;
end ;
end.