Files
kotlin/idea/testData/debugger/customLibraryForTinyApp/simpleLibFile/simpleLibFile.kt
Natalia Ukhorskaya 5edc25d2ba Debugger: step into default property getter/setter
#KT-7287 Fixed
2015-05-21 19:17:31 +03:00

10 lines
106 B
Kotlin
Vendored

package customLib.simpleLibFile
public fun foo() {
1 + 1
}
class B {
public var prop: Int = 1
}