Skip to content

Commit d7928b7

Browse files
Evgeny GerashchenkoEvgeny Gerashchenko
authored andcommitted
Added test cases with labeled diff.
1 parent 4c5bfae commit d7928b7

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed
Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
class F {
1+
class Outer {
22
fun f(a: Int) {
3-
if (a > 0) {
4-
this.<lineMarker>f</lineMarker>(a - 1)
3+
}
4+
5+
class F {
6+
fun f(a: Int) {
7+
if (a > 0) {
8+
this.<lineMarker>f</lineMarker>(a - 1)
9+
this@F.<lineMarker>f</lineMarker>(a - 1)
10+
11+
this@Outer.f(a - 1)
12+
}
513
}
614
}
715
}

0 commit comments

Comments
 (0)