mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
17 lines
182 B
ObjectPascal
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.
|