mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 11:48:04 +02:00

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 -
26 lines
291 B
ObjectPascal
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.
|
|
|