remove unused files
[platform/upstream/gcc48.git] / libjava / testsuite / libjava.special / pr21115I.java
1 public class pr21115I extends pr21115
2 {
3   public boolean test(boolean a, boolean b,
4                       boolean c, boolean d,
5                       boolean e, boolean f,
6                       boolean g, boolean h,
7                       boolean i, boolean j)
8   {
9     return a && b && c && d && e && f && g && h && i;
10   }
11   
12   public boolean test(int a, int b,
13                       int c, int d,
14                       int e, int f,
15                       int g, int h,
16                       int i, int j)
17   {
18     return true;
19   }
20 }