Files
kotlin/idea/testData/debugger/customLibraryForTinyApp/breakpointOnLocalProperty/1/a1.kt
2015-10-19 18:57:41 +03:00

8 lines
197 B
Kotlin
Vendored

@file:JvmName("SameNameBreakpointOnLocalProperty")
@file:JvmMultifileClass
package customLib.breakpointOnLocalProperty
public fun breakpointOnLocalPropertyFun(): Int {
val a = 1
return 1
}