fpc/tests/webtbs/tw20396.pp
florian 2887065c9d * forgotten test for last commit
git-svn-id: trunk@19499 -
2011-10-15 20:30:17 +00:00

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.