Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/kt1431.kt
T

19 lines
305 B
Kotlin
Vendored

// FIR_IDENTICAL
//FILE: a/C.java
// KT-1431 StackOverflowException in IDE when using JavaFX builders
package a;
public class C<B extends C<B>> {
public static C<?> create() { return null; }
public C foo() {return null;}
}
//FILE: d.kt
package d
import a.C
fun test() {
C.create().foo()
}