fpc/tests/webtbs/tw25814.pp
Jonas Maebe ffac2feb59 * since we only build the deref for tprocdef.localst when we're
going to write it to the ppu since r26083, also only deref it
    if that's the case (mantis #25814)

git-svn-id: trunk@26956 -
2014-03-04 19:42:39 +00:00

26 lines
291 B
ObjectPascal

{ %norun }
{ %recompile=-dchangeuses }
unit tw25814;
{$mode delphi}
interface
uses {$ifdef changeuses}sysutils,{$endif} classes, uw25814;
type
test = class
function xyz(b: string): string;
end;
implementation
function test.xyz(b: string): string;
begin
result:='';
end;
end.