6647b73cc8
Multiple clashing members declared in same class should be added to the class' scope in order to avoid downstream spurious diagnostics Reviewed-by: jjg
17 lines
324 B
Java
17 lines
324 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 6910550
|
|
*
|
|
* @summary javac 1.5.0_17 fails with incorrect error message
|
|
* @compile/fail/ref=T6910550a.out -XDrawDiagnostics T6910550a.java
|
|
*
|
|
*/
|
|
import java.util.*;
|
|
|
|
class T6910550a {
|
|
void m(List<String> ls) {}
|
|
void m(List<Integer> li) {}
|
|
|
|
{ m(Arrays.asList(12)); }
|
|
}
|