blob: 1dc79bc5f5d9bc3c1092b0da65c9890b65684092 [file] [log] [blame]
// TARGET_BACKEND: JVM_IR
// ISSUE: KT-53698
// MODULE: lib
package foo
class Some(val s: String)
internal fun Some.foo(): String = s
// MODULE: main(lib)
@file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER")
package bar
import foo.Some
import foo.foo
fun box(): String {
val some = Some("OK")
return some.foo()
}