mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
14 lines
219 B
Kotlin
Vendored
14 lines
219 B
Kotlin
Vendored
package customLib.inlineFunInLibrary
|
|
|
|
public inline fun inlineFun(f: () -> Unit) {
|
|
1 + 1
|
|
inlineFunInner {
|
|
1 + 1
|
|
}
|
|
}
|
|
|
|
public inline fun inlineFunInner(f: () -> Unit) {
|
|
// Breakpoint 2
|
|
1 + 1
|
|
}
|