use correct safe delete processor for members of local classes and objects
#KT-8894 Fixed
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
open class SampleParent { var field = 0 }
|
||||
|
||||
fun context() {
|
||||
var v = object : SampleParent() { var ad<caret>dition = 0 }
|
||||
println(v.field)
|
||||
println(v.addition)
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
property context.<no name provided>.addition has 1 usage that is not safe to delete.
|
||||
Reference in New Issue
Block a user