Added test cases with labeled diff.
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
class F {
|
||||
class Outer {
|
||||
fun f(a: Int) {
|
||||
if (a > 0) {
|
||||
this.<lineMarker>f</lineMarker>(a - 1)
|
||||
}
|
||||
|
||||
class F {
|
||||
fun f(a: Int) {
|
||||
if (a > 0) {
|
||||
this.<lineMarker>f</lineMarker>(a - 1)
|
||||
this@F.<lineMarker>f</lineMarker>(a - 1)
|
||||
|
||||
this@Outer.f(a - 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user