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 public class Test { 6 7 public Object b; 8 public Test d; 9 public Test e; 10 public Test g; 11 public Test f; 12 a()13 public void a() { throw new RuntimeException("Test.a()"); } a(long p1)14 public void a(long p1) { throw new RuntimeException("Test.a(long)"); } a(long p1, boolean p2)15 public void a(long p1, boolean p2) { throw new RuntimeException("Test.a(long, boolean)"); } a(java.io.DataInputStream p1)16 public Test a(java.io.DataInputStream p1) { throw new RuntimeException("Test.a(input-stream)"); } a(byte[] p1, Test p2)17 public Test a(byte[] p1, Test p2) { throw new RuntimeException("Test.a(B[], Test)"); } b()18 public java.io.File b() { throw new RuntimeException("Test.b()"); } bW_()19 public Test bW_() { throw new RuntimeException("Test.bW_()"); } c()20 public long c() { throw new RuntimeException("Test.d()"); } c(boolean p1)21 public void c(boolean p1) { throw new RuntimeException("Test.c(boolean)"); } c(java.nio.ByteBuffer p1)22 public void c(java.nio.ByteBuffer p1) { throw new RuntimeException("Test.c(byte-buf)"); } cB()23 public byte[] cB() { throw new RuntimeException("Test.cB()"); } d()24 public long d() { throw new RuntimeException("Test.d()"); } d(boolean p1)25 public void d(boolean p1) { throw new RuntimeException("Test.d(boolean)"); } e()26 public Test e() { throw new RuntimeException("Test.e()"); } eV()27 public void eV() { throw new RuntimeException("Test.eV()"); } 28 main(String[] args)29 public static void main(String[] args) { 30 try { 31 new TestObject().f(); 32 } catch (Exception e) { 33 System.out.println(e); 34 } 35 } 36 } 37