fpc/tests/test/opt/udeadstr4.pp
florian be807d6cef + tests for dead store removal
git-svn-id: trunk@26299 -
2013-12-28 20:19:46 +00:00

15 lines
135 B
ObjectPascal

{ %OPT=-O3 -Oodeadstore }
{ %norun }
unit udeadstr4;
interface
var
i : longint;
implementation
begin
i:=1234;
end.