LineBreakpoint created at frameObject.kt:6 !JDK_HOME!\bin\java -agentlib:jdwp=transport=dt_socket,address=!HOST_NAME!:!HOST_PORT!,suspend=y,server=n -Dfile.encoding=!FILE_ENCODING! -classpath !OUTPUT_PATH!;!KOTLIN_RUNTIME!;!CUSTOM_LIBRARY!;!RT_JAR! frameObject.FrameObjectKt Connected to the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket' frameObject.kt:6 Compile bytecode for O.obProp Compile bytecode for O.obMyFun() package frameObject fun main(args: Array) { foo { //Breakpoint! O.obProp } } object O { val obProp = 1 fun obMyFun() = 1 } fun foo(f: () -> Unit) { f() } // PRINT_FRAME // EXPRESSION: O.obProp // RESULT: 1: I // EXPRESSION: O.obMyFun() // RESULT: 1: I frame = invoke():6, FrameObjectKt$main$1 {frameObject} this = this = {frameObject.FrameObjectKt$main$1@uniqueID}kotlin.jvm.functions.Function0 field = arity: int = 0 (sp = Lambda.!EXT!) Disconnected from the target VM, address: '!HOST_NAME!:PORT_NAME!', transport: 'socket' Process finished with exit code 0