fpc/tests/webtbs/tw4427.pp
2008-03-02 15:00:32 +00:00

17 lines
182 B
ObjectPascal

{$inline on}
procedure test(p: pchar);
begin
if pchar(p)^ <> 'a' then
halt(1);
end;
procedure test(const p); inline;
begin
test(pchar(@p));
end;
begin
test('abc');
end.