fpc/tests/webtbs/tw27414.pp
Jonas Maebe 8087389f63 * support assigning static methods to regular procvars in (obj)fpc mode
(patch by Ondrej Pokorny, mantis #27414)

git-svn-id: trunk@32216 -
2015-11-01 18:02:46 +00:00

29 lines
360 B
ObjectPascal

program fpc_procedural_type_bug;
{$mode objfpc}
type
tproc = procedure(const aparam : string);
tobj = class
class procedure proc(const aparam : string); static;
end;
var
s: string;
class procedure tobj.proc(const aparam : string);
begin
s:=aparam;
end;
var
p : tproc;
begin
p := @tobj.proc;
p('abc');
if s<>'abc' then
halt(1);
end.