6 lines
95 B
Kotlin
6 lines
95 B
Kotlin
package customLib.inlineFunInLibrary
|
|
|
|
public inline fun inlineFun(f: () -> Unit) {
|
|
1 + 1
|
|
}
|