fixed liveness analysis
[IRC.git] / Robust / src / Tests / mlp / tinyTest / test.java
1 public class Test {
2
3   public static void main( String args[] ) {
4     // no code is outside the root sese
5     // in the main method
6     sese root {
7       int n = 10;
8       
9       sese top {     
10         int x = 0;
11       
12         for( int i = 0; i < 3; ++i ) {
13           sese iter {
14             x = x + i;
15           }
16         }      
17         
18         int j = x + n;
19       }
20
21       int z = n + j;
22     }
23   }
24 }