* forgotten test for last commit

git-svn-id: trunk@19499 -
This commit is contained in:
florian 2011-10-15 20:30:17 +00:00
parent 3323f1b3ea
commit 2887065c9d
2 changed files with 12 additions and 0 deletions

1
.gitattributes vendored
View File

@ -11909,6 +11909,7 @@ tests/webtbs/tw2028.pp svneol=native#text/plain
tests/webtbs/tw2030.pp svneol=native#text/plain
tests/webtbs/tw2031.pp svneol=native#text/plain
tests/webtbs/tw2037.pp svneol=native#text/plain
tests/webtbs/tw20396.pp svneol=native#text/plain
tests/webtbs/tw2040.pp svneol=native#text/plain
tests/webtbs/tw2041.pp svneol=native#text/plain
tests/webtbs/tw20421.pp svneol=native#text/pascal

11
tests/webtbs/tw20396.pp Normal file
View File

@ -0,0 +1,11 @@
{ %opt=-Co }
program test_Co_option;
{$mode objfpc}{$H+}
var i: Integer;
begin
i := -2;
i := i * 2;
writeln('ok');
end.