Effective visibility is now considered private for invisible fake #KT-14469 Fixed
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// KT-14469: SOE during effective visibility evaluation
|
||||
|
||||
abstract class Base(private val v: String)
|
||||
|
||||
fun bar(arg: String) = arg
|
||||
|
||||
class Derived : Base("123") {
|
||||
|
||||
private <!NOTHING_TO_INLINE!>inline<!> fun foo() {
|
||||
bar(<!INVISIBLE_MEMBER!>v<!>)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user