mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
11 lines
179 B
ObjectPascal
11 lines
179 B
ObjectPascal
{ Old file: tbs0081.pp }
|
|
{ Shows incompatibility with borland's 'array of char'. OK 0.99.1 (FK) }
|
|
|
|
program bug0081;
|
|
|
|
const
|
|
EOL : array [1..2] of char = #13 + #10;
|
|
|
|
begin
|
|
end.
|