mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 03:49:05 +02:00
12 lines
129 B
ObjectPascal
12 lines
129 B
ObjectPascal
{$WRITEABLECONST OFF}
|
|
|
|
procedure TestBuf(const Buf; Size: Integer);
|
|
begin
|
|
end;
|
|
|
|
const A : Byte = 1;
|
|
|
|
begin
|
|
TestBuf(A, 1);
|
|
end.
|