Improved logic of finding conflicts for refactoring actions

This commit is contained in:
Stanislav Erokhin
2015-08-25 20:02:28 +03:00
parent 9a435e332f
commit aaebe70342
8 changed files with 25 additions and 24 deletions
@@ -1,9 +1,9 @@
// WITH_RUNTIME
fun main(args: Array<String>) {
with(A()) {
val prop = prop
println(prop)
println(prop)
val prop1 = prop
println(prop1)
println(prop1)
}
}
@@ -6,9 +6,9 @@ fun foo(body: A.() -> Unit) {}
fun bar() {
foo {
val value = value
print(value)
print(value)
val value1 = value
print(value1)
print(value1)
}
foo {