fpc/tests/webtbs/tw4427.pp
Jonas Maebe 810ec85e34 - disable inlining for procedures with a formal const parameter, fixes
webtbs/tw4427

git-svn-id: trunk@1390 -
2005-10-15 20:48:35 +00:00

20 lines
200 B
ObjectPascal

{$inline on}
type
pbyte = ^byte;
procedure test(p: pchar);
begin
if pbyte(p)^ <> 0 then
halt(1);
end;
procedure test(const p); inline;
begin
test(pchar(@p));
end;
begin
test(#0);
end.