[JVM IR] Make file classes with all private members package-private
This commit is contained in:
committed by
Alexander Udalov
parent
032c64669c
commit
77180a5b13
+14
@@ -0,0 +1,14 @@
|
||||
// WITH_RUNTIME
|
||||
// IGNORE_BACKEND: JVM
|
||||
// !LANGUAGE: +PackagePrivateFileClassesWithAllPrivateMembers
|
||||
|
||||
private fun f() {
|
||||
}
|
||||
|
||||
private val a = Unit
|
||||
private val b by lazy { Unit }
|
||||
|
||||
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
||||
@kotlin.internal.InlineOnly
|
||||
public fun g() {
|
||||
}
|
||||
Reference in New Issue
Block a user