mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
22 lines
380 B
Kotlin
22 lines
380 B
Kotlin
// FILE: smartStepIntoClassMethodReference.kt
|
|
package smartStepIntoClassMethodReference
|
|
|
|
import forTests.JavaUtil
|
|
|
|
fun main() {
|
|
// SMART_STEP_INTO_BY_INDEX: 2
|
|
//Breakpoint!
|
|
JavaUtil.lambdaFun {
|
|
println()
|
|
}
|
|
}
|
|
|
|
// FILE: forTests/JavaUtil.java
|
|
package forTests;
|
|
|
|
public class JavaUtil {
|
|
public static void lambdaFun(Runnable r) {
|
|
r.run();
|
|
}
|
|
}
|