d2e33c8900
#KT-1038 fixed #KT-1127 fixed #KT-1145 fixed #KT-1410 fixed #KT-1718 fixed #KT-2286 fixed #KT-1431 fixed #KT-2394 fixed
17 lines
305 B
Kotlin
17 lines
305 B
Kotlin
//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()<!UNSAFE_CALL!>.<!>foo()
|
|
} |