fpc/tests/webtbf/tw8150c.pp
Jonas Maebe 4e96fe8fac * fixed with-support for classrefdefs (mantis 8150), with thanks to
Thorsten Engler for supplying an initial patch

git-svn-id: trunk@6088 -
2007-01-20 20:04:54 +00:00

30 lines
291 B
ObjectPascal

{ %fail }
{ %norun }
{$ifdef fpc}
{$mode delphi}
{$endif}
type
tc = class
class procedure classmethod;
procedure method;
a : longint;
end;
ttc = class of tc;
class procedure tc.classmethod;
begin
a:= 5;
end;
procedure tc.method;
begin
end;
var
c: ttc;
begin
end.