d6cface66f
Consider all callable descriptor in JavaClassDescriptor to be from Java. This is used to check if smart step into should be intercepted by Kotlin handler or delegated to Java. #KT-21538 Fixed
9 lines
171 B
Kotlin
Vendored
9 lines
171 B
Kotlin
Vendored
package javaSamFunction
|
|
|
|
import forTests.MyJavaClass
|
|
|
|
fun main(args: Array<String>) {
|
|
val klass = MyJavaClass()
|
|
//Breakpoint!
|
|
klass.other { /* do nothing*/ }
|
|
} |