15 lines
212 B
Kotlin
Vendored
15 lines
212 B
Kotlin
Vendored
package inlineInObject
|
|
|
|
fun main(args: Array<String>) {
|
|
//Breakpoint!
|
|
OtherWithInline.one()
|
|
}
|
|
|
|
object OtherWithInline {
|
|
inline fun one() {
|
|
//Breakpoint!
|
|
println()
|
|
}
|
|
}
|
|
|
|
// RESUME: 1 |