[LL FIR] fix typo in LLFirModuleData.friendDependencies
^KTIJ-23347 Fixed
This commit is contained in:
committed by
Space Team
parent
6ab00a65dd
commit
82d934d873
@@ -0,0 +1,36 @@
|
||||
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
||||
// MODULE: m1
|
||||
// FILE: a.kt
|
||||
|
||||
package p
|
||||
|
||||
public class A {
|
||||
private val a = A()
|
||||
private var v = A()
|
||||
private fun a() = A()
|
||||
private inner class B
|
||||
}
|
||||
|
||||
private val a = A()
|
||||
private var v = A()
|
||||
private fun a() = A()
|
||||
private class B
|
||||
|
||||
// MODULE: m2()(m1)
|
||||
// FILE: b.kt
|
||||
|
||||
import p.*
|
||||
|
||||
fun test() {
|
||||
val _a = <!INVISIBLE_MEMBER!>a<!>
|
||||
val _v = <!INVISIBLE_MEMBER!>v<!>
|
||||
<!INVISIBLE_MEMBER!>a<!>()
|
||||
<!INVISIBLE_MEMBER!>B<!>()
|
||||
|
||||
val inst = A()
|
||||
val ia = inst.<!INVISIBLE_MEMBER!>a<!>
|
||||
val iv = inst.<!INVISIBLE_MEMBER!>v<!>
|
||||
inst.<!INVISIBLE_MEMBER!>a<!>()
|
||||
inst.<!INVISIBLE_MEMBER!>B<!>()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user