Home | History | Annotate | Download | only in bad-codegen
      1 // Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file
      2 // for details. All rights reserved. Use of this source code is governed by a
      3 // BSD-style license that can be found in the LICENSE file.
      4 
      5 import java.util.Map;
      6 
      7 public class Test {
      8   public Test a;
      9   public static Test P;
     10 
     11   public Test() {
     12   }
     13 
     14   public Test(int a, Test b, Test c, Long d, Test e, Map f) {
     15   }
     16 
     17   public Test(int i1, int i2, int i3) {
     18   }
     19 
     20   public long b() {
     21     return 0;
     22   }
     23 
     24   public boolean c() {
     25     return false;
     26   }
     27 
     28   public boolean d() {
     29     return false;
     30   }
     31 
     32   public static void main(String[] args) {
     33     Test test = new Test();
     34     try {
     35       new TestObject().a(test, test, test, test, true);
     36     } catch (Throwable t) {
     37       System.out.println(t);
     38     }
     39   }
     40 }
     41