10 lines
125 B
Kotlin
Vendored
10 lines
125 B
Kotlin
Vendored
class C {
|
|
internal fun bar() {}
|
|
}
|
|
|
|
inline fun C.foo() {
|
|
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
|
|
bar()
|
|
|
|
}
|