Added test cases with labeled diff.

This commit is contained in:
Evgeny Gerashchenko
2015-04-08 16:43:34 +03:00
parent 4c5bfaeb8b
commit d7928b7251
@@ -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)
}
}
}
}