mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
8 lines
151 B
Kotlin
Vendored
8 lines
151 B
Kotlin
Vendored
package inlineFun1
|
|
|
|
class A {
|
|
inline fun component1() = foo { 1 }
|
|
inline fun component2() = foo { 2 }
|
|
|
|
inline fun foo(f: () -> Int) = f()
|
|
} |