[FIR] Allow to access uninitialized member properties in non-inPlace lambdas in class initialization
^KT-56696 Fixed ^KT-56408
This commit is contained in:
committed by
Space Team
parent
914acd841f
commit
86af01439c
+71
@@ -0,0 +1,71 @@
|
||||
// DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
// WITH_STDLIB
|
||||
|
||||
import kotlin.contracts.*
|
||||
|
||||
fun capture(block: () -> Unit): String = ""
|
||||
|
||||
@OptIn(ExperimentalContracts::class)
|
||||
inline fun inPlace(block: () -> Unit): String {
|
||||
contract {
|
||||
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
|
||||
}
|
||||
block()
|
||||
return ""
|
||||
}
|
||||
|
||||
fun consume(x: Any?) {}
|
||||
|
||||
class A {
|
||||
val a = capture { consume(x) }
|
||||
|
||||
val b = inPlace {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
|
||||
val c = object {
|
||||
fun foo() {
|
||||
consume(x) // ok
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(x) // ok
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
|
||||
init {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
|
||||
val objectProp = inPlace {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
val d = inPlace {
|
||||
fun localFun() {
|
||||
consume(x) // ok
|
||||
}
|
||||
|
||||
capture {
|
||||
localFun()
|
||||
}
|
||||
}
|
||||
|
||||
val x = 10
|
||||
}
|
||||
+71
@@ -0,0 +1,71 @@
|
||||
// DIAGNOSTICS: -UNUSED_PARAMETER
|
||||
// WITH_STDLIB
|
||||
|
||||
import kotlin.contracts.*
|
||||
|
||||
fun capture(block: () -> Unit): String = ""
|
||||
|
||||
@OptIn(ExperimentalContracts::class)
|
||||
inline fun inPlace(block: () -> Unit): String {
|
||||
contract {
|
||||
callsInPlace(block, InvocationKind.EXACTLY_ONCE)
|
||||
}
|
||||
block()
|
||||
return ""
|
||||
}
|
||||
|
||||
fun consume(x: Any?) {}
|
||||
|
||||
class A {
|
||||
val a = capture { consume(x) }
|
||||
|
||||
val b = inPlace {
|
||||
consume(x) // error
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(x) // error
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
|
||||
val c = object {
|
||||
fun foo() {
|
||||
consume(x) // ok
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(x) // ok
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
|
||||
init {
|
||||
consume(<!UNINITIALIZED_VARIABLE!>x<!>) // error
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(x) // error
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
|
||||
val objectProp = inPlace {
|
||||
consume(x) // error
|
||||
capture { consume(x) } // ok
|
||||
inPlace {
|
||||
consume(x) // error
|
||||
capture { consume(x) } // ok
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
val d = inPlace {
|
||||
fun localFun() {
|
||||
consume(x) // ok
|
||||
}
|
||||
|
||||
capture {
|
||||
localFun()
|
||||
}
|
||||
}
|
||||
|
||||
val x = 10
|
||||
}
|
||||
-87
@@ -1,87 +0,0 @@
|
||||
fun println(obj: Any?) = obj
|
||||
|
||||
class Demo0 {
|
||||
private val some = object {
|
||||
fun foo() {
|
||||
println(state)
|
||||
}
|
||||
}
|
||||
|
||||
private var state: Boolean = true
|
||||
}
|
||||
|
||||
class Demo1 {
|
||||
private val some = object {
|
||||
fun foo() {
|
||||
if (state)
|
||||
state = true
|
||||
|
||||
println(state)
|
||||
}
|
||||
}
|
||||
|
||||
private var state: Boolean = true
|
||||
}
|
||||
|
||||
class Demo1A {
|
||||
fun foo() {
|
||||
if (state)
|
||||
state = true
|
||||
|
||||
println(state)
|
||||
}
|
||||
|
||||
private var state: Boolean = true
|
||||
}
|
||||
|
||||
class Demo2 {
|
||||
private val some = object {
|
||||
fun foo() {
|
||||
if (state)
|
||||
state = true
|
||||
else
|
||||
state = false
|
||||
|
||||
println(state)
|
||||
}
|
||||
}
|
||||
|
||||
private var state: Boolean = true
|
||||
}
|
||||
|
||||
class Demo3 {
|
||||
private val some = run {
|
||||
if (state)
|
||||
state = true
|
||||
|
||||
println(state)
|
||||
}
|
||||
|
||||
private var state: Boolean = true
|
||||
}
|
||||
|
||||
fun <T> exec(f: () -> T): T = f()
|
||||
|
||||
class Demo4 {
|
||||
private val some = exec {
|
||||
if (<!UNINITIALIZED_VARIABLE!>state<!>)
|
||||
state = true
|
||||
|
||||
println(<!UNINITIALIZED_VARIABLE!>state<!>)
|
||||
}
|
||||
|
||||
private var state: Boolean = true
|
||||
}
|
||||
|
||||
class Demo5 {
|
||||
private var state: Boolean = true
|
||||
|
||||
private val some = object {
|
||||
fun foo() {
|
||||
if (state)
|
||||
state = true
|
||||
|
||||
println(state)
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
@@ -1,3 +1,4 @@
|
||||
// FIR_IDENTICAL
|
||||
fun println(obj: Any?) = obj
|
||||
|
||||
class Demo0 {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
object DelegateTest {
|
||||
var result = ""
|
||||
val f by lazy {
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, UNINITIALIZED_VARIABLE!>f<!>.toString() // Compiler crash
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>f<!>.toString() // Compiler crash
|
||||
"hello"
|
||||
}
|
||||
}
|
||||
@@ -12,7 +12,7 @@ object DelegateTest {
|
||||
object DelegateTest2 {
|
||||
var result = ""
|
||||
val f by lazy {
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, UNINITIALIZED_VARIABLE!>f<!>
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>f<!>
|
||||
"hello"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
object DelegateTest {
|
||||
var result = ""
|
||||
val f by lazy {
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, UNINITIALIZED_VARIABLE!>f<!>.toString() // Compiler crash
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>f<!>.toString() // Compiler crash
|
||||
"hello"
|
||||
}
|
||||
}
|
||||
@@ -13,7 +13,7 @@ object DelegateTest {
|
||||
object DelegateTest2 {
|
||||
var result = ""
|
||||
val f by lazy {
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, UNINITIALIZED_VARIABLE!>f<!>
|
||||
result += <!DEBUG_INFO_EXPRESSION_TYPE("ERROR CLASS: cycle"), TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>f<!>
|
||||
"hello"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
object DelegateTest {
|
||||
var result = ""
|
||||
val f by lazy {
|
||||
result += <!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, UNINITIALIZED_VARIABLE!>f<!>.toString() // Compiler crash
|
||||
result += <!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>f<!>.toString() // Compiler crash
|
||||
"hello"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ fun bar2() = {
|
||||
//properties
|
||||
//in a class
|
||||
class A() {
|
||||
val x = { <!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, UNINITIALIZED_VARIABLE!>x<!> }
|
||||
val x = { <!TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM, TYPECHECKER_HAS_RUN_INTO_RECURSIVE_PROBLEM!>x<!> }
|
||||
}
|
||||
|
||||
//in a package
|
||||
|
||||
Reference in New Issue
Block a user