10 lines
132 B
Kotlin
Vendored
10 lines
132 B
Kotlin
Vendored
package customLib.functionInLibrary
|
|
|
|
public inline fun simpleFun() {
|
|
nextFun()
|
|
}
|
|
|
|
public inline fun nextFun() {
|
|
val a = 1
|
|
}
|