FIR checker: report VAL_REASSIGNMENT on value parameter
This commit is contained in:
committed by
TeamCityServer
parent
2486555208
commit
03f85bea8f
Vendored
+2
-2
@@ -54,7 +54,7 @@ fun t2() {
|
||||
class A() {}
|
||||
|
||||
fun t4(a: A) {
|
||||
a = A()
|
||||
<!VAL_REASSIGNMENT!>a<!> = A()
|
||||
}
|
||||
|
||||
// ------------------------------------------------
|
||||
@@ -188,7 +188,7 @@ class AnonymousInitializers(var a: String, val b: String) {
|
||||
}
|
||||
|
||||
fun reassignFunParams(a: Int) {
|
||||
a = 1
|
||||
<!VAL_REASSIGNMENT!>a<!> = 1
|
||||
}
|
||||
|
||||
open class Open(a: Int, w: Int) {}
|
||||
|
||||
Vendored
+1
-1
@@ -5,7 +5,7 @@ fun testPrefix() {
|
||||
|
||||
fun testPostfixWithCall(n: Nothing) {
|
||||
operator fun Nothing.inc(): Nothing = this
|
||||
n++
|
||||
<!VAL_REASSIGNMENT!>n<!>++
|
||||
}
|
||||
|
||||
fun testPostfixSpecial() {
|
||||
|
||||
Reference in New Issue
Block a user