Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
97532adadc6b50994014fef031a55f779be4c63c
/
.
/
compiler
/
testData
/
codegen
/
box
/
k2DifferencesChecks
/
recursiveFun.kt
blob: 727549aa250cc1f1d0e8230224602d41fc0762a4 [
file
]
// ORIGINAL: /compiler/testData/diagnostics/tests/inference/recursiveLocalFuns/recursiveFun.fir.kt
// WITH_STDLIB
fun foo
()
{
fun bar
()
=
(
fun
()
=
bar
())
}
fun box
()
=
"OK"
.
also
{
foo
()
}