Files
kotlin-fork/compiler/testData/ir/irText/errors/suppressedNonPublicCall.kt
T
2016-10-18 09:09:18 +03:00

10 lines
125 B
Kotlin
Vendored

class C {
internal fun bar() {}
}
inline fun C.foo() {
@Suppress("NON_PUBLIC_CALL_FROM_PUBLIC_INLINE")
bar()
}