Mads Ager | 418d1ca | 2017-05-22 09:35:49 +0200 | [diff] [blame^] | 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 | |
| 13 | public void a() { throw new RuntimeException("Test.a()"); } |
| 14 | public void a(long p1) { throw new RuntimeException("Test.a(long)"); } |
| 15 | public void a(long p1, boolean p2) { throw new RuntimeException("Test.a(long, boolean)"); } |
| 16 | public Test a(java.io.DataInputStream p1) { throw new RuntimeException("Test.a(input-stream)"); } |
| 17 | public Test a(byte[] p1, Test p2) { throw new RuntimeException("Test.a(B[], Test)"); } |
| 18 | public java.io.File b() { throw new RuntimeException("Test.b()"); } |
| 19 | public Test bW_() { throw new RuntimeException("Test.bW_()"); } |
| 20 | public long c() { throw new RuntimeException("Test.d()"); } |
| 21 | public void c(boolean p1) { throw new RuntimeException("Test.c(boolean)"); } |
| 22 | public void c(java.nio.ByteBuffer p1) { throw new RuntimeException("Test.c(byte-buf)"); } |
| 23 | public byte[] cB() { throw new RuntimeException("Test.cB()"); } |
| 24 | public long d() { throw new RuntimeException("Test.d()"); } |
| 25 | public void d(boolean p1) { throw new RuntimeException("Test.d(boolean)"); } |
| 26 | public Test e() { throw new RuntimeException("Test.e()"); } |
| 27 | public void eV() { throw new RuntimeException("Test.eV()"); } |
| 28 | |
| 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 | } |