[LC] Fix invalid nullability for properties
Fixed #KT-46097 and #KT-41671
This commit is contained in:
@@ -101,3 +101,9 @@ interface A {
|
||||
public get
|
||||
internal set
|
||||
}
|
||||
|
||||
class Foo {
|
||||
val foo get() = getMeNonNullFoo()
|
||||
val foo2: Foo get() = getMeNonNullFoo()
|
||||
fun getMeNonNullFoo() : Foo = Foo()
|
||||
}
|
||||
Reference in New Issue
Block a user