blob: 0d71d55aee68338bf3c0a468a22c8518d4858a59 [file]
tailrec fun foo() {
try {
return foo()
}
catch (e: Throwable) {
}
}