mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-16 01:50:38 +01: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.
|