codegen: handle exceptions of a method
[mate.git] / tests / If1.java
1 package tests;
2
3 public class If1 {
4         public static void main(String []args) {
5                 boolean a = true;
6                 boolean b = true;
7                 boolean c = true;
8                 boolean d = true;
9
10                 if (a)
11                         System.out.printf("a\n");
12                 if (b)
13                         System.out.printf("b\n");
14                 if (c)
15                         System.out.printf("c\n");
16                 if (d)
17                         System.out.printf("d\n");
18         }
19 }