Sign in
eclipse
/
www.eclipse.org
/
eclipse
/
news
/
7bbbdc0a84c6d73f0cec38eaeaff22b8376bb8c8
/
.
/
4.3
/
final - SR2
/
images
/
illegal-ambiguous-varargs-error2.txt
blob: 4a990bdd25c3bd5cec6d8588eaf79fe46bff7cf1 [
file
] [
log
] [
blame
]
public static void foo(int... i) { }
public static void foo(double... d) { }
public static void main(String[] args) {
foo(1, 2, 3); // foo flagged ambiguous
}