mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 17:49:33 +02: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.
|