mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 17:06:14 +02:00
no message
This commit is contained in:
parent
176f2c1c1b
commit
d3b67cb11d
19
tests/tbs/tb0474.pp
Normal file
19
tests/tbs/tb0474.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user