source:
liacs/coco/tests/optimize/deadcode.p0@
83
Last change on this file since 83 was 2, checked in by , 15 years ago | |
---|---|
File size: 153 bytes |
Rev | Line | |
---|---|---|
[2] | 1 | program deadcode; |
2 | ||
3 | var | |
4 | test,a,b,t: integer; | |
5 | ||
6 | begin | |
7 | test := 0; | |
8 | a := 4; | |
9 | if (test = 1) then | |
10 | begin | |
11 | a := 1; | |
12 | b := 5 | |
13 | end; | |
14 | writeinteger(a) | |
15 | end. |
Note:
See TracBrowser
for help on using the repository browser.