9dffe0924c5820fd1be377f17da2b31d47c1270b
[IRC.git] / Robust / src / Tests / mlp / syntaxTest / test.java
1 public class Test {
2
3   public static void main( String args[] ) {
4     
5     /*
6     int a = 0;
7     
8     sese {
9       int x = 3;
10     }
11     
12     a = x;
13     
14     
15     sese {
16       int y = 4;
17       y+=4;
18       
19       sese {
20         int z = x + y;
21         z+=6;
22         Integer n=new Integer(23);
23       }
24     }
25     
26     x = y + z;
27     */
28
29     Integer   r = disjoint t1 new Integer(23);
30
31     int[]     s = disjoint t2 new     int[10];
32
33     Integer[] t = disjoint t3 new Integer[10];
34   }
35 }