diff --git a/idea/testData/codeInsight/lineMarker/recursiveCall/thisQualifier.kt b/idea/testData/codeInsight/lineMarker/recursiveCall/thisQualifier.kt index 59000bea619..d4a36ec801c 100644 --- a/idea/testData/codeInsight/lineMarker/recursiveCall/thisQualifier.kt +++ b/idea/testData/codeInsight/lineMarker/recursiveCall/thisQualifier.kt @@ -1,7 +1,15 @@ -class F { +class Outer { fun f(a: Int) { - if (a > 0) { - this.f(a - 1) + } + + class F { + fun f(a: Int) { + if (a > 0) { + this.f(a - 1) + this@F.f(a - 1) + + this@Outer.f(a - 1) + } } } }