mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8334466: Ambiguous method call with generics may cause FunctionDescriptorLookupError
Reviewed-by: jlahoda
This commit is contained in:
parent
89a15f1414
commit
61d1dc5953
3 changed files with 38 additions and 3 deletions
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* @test /nodynamiccopyright/
|
||||
* @bug 8334466
|
||||
* @summary Ambiguous method call with generics may cause FunctionDescriptorLookupError
|
||||
* @compile/fail/ref=CrashWithFunctionDescriptorLookupErrorTest.out -XDrawDiagnostics CrashWithFunctionDescriptorLookupErrorTest.java
|
||||
*/
|
||||
|
||||
import java.util.List;
|
||||
|
||||
class CrashWithFunctionDescriptorLookupErrorTest {
|
||||
void m() {
|
||||
List<X> list = List.of(new X());
|
||||
test(list.get(0));
|
||||
}
|
||||
|
||||
void test(A<?> a) { }
|
||||
void test(B<?> b) { }
|
||||
|
||||
interface A<T extends A<T>> { T a(); }
|
||||
interface B<T extends B<T>> { T b(); }
|
||||
class X implements A<X>, B<X> {
|
||||
public X a() { return null; }
|
||||
public X b() { return null; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue