blob: 44b543537bea8e591a9764113181e55877ece97a [file] [log] [blame]
Mads Ager418d1ca2017-05-22 09:35:49 +02001// 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.
4package throwing;
5
6import java.util.List;
7
8public abstract class Overloaded {
9
10 public int aMethod(int x) {
11 return 0;
12 }
13
14 public int conflictingMethod(int x) {
15 return 0;
16 }
17
18 public abstract int bMethod(double x);
19
20 public int conflictingMethod(double x) {
21 return 0;
22 }
23
24 public int cMethod(boolean x) {
25 return 0;
26 }
27
28 public int conflictingMethod(boolean x) {
29 return 0;
30 }
31
32 public int anotherConflict(boolean x) {
33 return 0;
34 }
35
36 public int unique(List x) {
37 return 0;
38 }
39}