no message

This commit is contained in:
florian 2004-05-23 09:58:39 +00:00
parent 176f2c1c1b
commit d3b67cb11d

19
tests/tbs/tb0474.pp Normal file
View File

@ -0,0 +1,19 @@
{$mode objfpc}
type
tmyclass = class
function f : widestring;
procedure p(var v);
end;
procedure tmyclass.p(var v);
begin
end;
function tmyclass.f : widestring;
begin
p(pchar(result));
p(pwidechar(result));
end;
begin
end.