mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-01 21:49:24 +01:00
12 lines
128 B
ObjectPascal
12 lines
128 B
ObjectPascal
{ %opt=-Co }
|
|
program test_Co_option;
|
|
|
|
{$mode objfpc}{$H+}
|
|
var i: Integer;
|
|
|
|
begin
|
|
i := -2;
|
|
i := i * 2;
|
|
writeln('ok');
|
|
end.
|