11 lines
142 B
Kotlin
Vendored
11 lines
142 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class C {
|
|
internal fun bar() {}
|
|
}
|
|
|
|
inline fun C.foo() {
|
|
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
|
|
bar()
|
|
|
|
}
|