Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
tailRecWithExtensionReceiver.kt
blob: 4ca7fbd064ab18da11dfa9c884be078f513a902a [
file
]
// FIR_IDENTICAL
tailrec fun
String
.
foo1
()
{
""
.
foo1
()
}
tailrec fun
String
.
foo2
()
{
this
.
foo2
()
}
<!
NO_TAIL_CALLS_FOUND
!>
tailrec
<!>
fun
String
.
foo3
()
{
with
(
this
)
{
<!
NON_TAIL_RECURSIVE_CALL
!>
foo3
<!>()
}
}