[LC] Fix invalid nullability for properties

Fixed #KT-46097 and #KT-41671
This commit is contained in:
Igor Yakovlev
2021-04-15 18:55:53 +02:00
parent 8071a1e246
commit 63160293fb
4 changed files with 14 additions and 4 deletions

View File

@@ -1,4 +1,3 @@
class TestConstructor private constructor(p: Int = 1)
class A(vararg a: Int, f: () -> Unit) {}
@@ -15,3 +14,7 @@ class Outer {
sealed class A(val x: String? = null) {
class C : A()
}
class ClassWithPrivateCtor private constructor(
public val property: Set<Int>
)

View File

@@ -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()
}