fpc/tests/webtbs/tw2210.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

20 lines
336 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 2210 }
{ Submitted by "peter" on 2002-10-30 }
{ e-mail: peter@casltd.co.uk }
{$mode objfpc}
unit tw2210;
interface
implementation
type
tclass = class
function blah (p:integer) : boolean;
end;
function tclass.blah(p:integer):boolean;
begin
blah := true;
end;
end.