fpc/tests/test/opt/tdfa8.pp
florian 99eadb91b3 * run CheckAndWarn to get proper locations for warnings about uninitialized variables
* several fixes to liveness analysis
* get rid of old version defines
+ tests

git-svn-id: trunk@26159 -
2013-12-01 17:01:51 +00:00

19 lines
268 B
ObjectPascal

{ %OPT=-Oodfa -Sew -vw }
{ %fail }
{ %norun }
unit tdfa8;
interface
implementation
{ this test will work only as soon as we have global dfa,
so this will not be forgotten to be handled properly }
var
i : longint;
initialization
finalization
writeln(i);
end.