"Redundant suspend modifier": fix false negative with only recursive call

#KT-35829 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-01-13 21:24:16 +09:00
committed by Ilya Kirillov
parent e3871a9961
commit 1f6b7dd88d
4 changed files with 24 additions and 3 deletions
@@ -0,0 +1,3 @@
<caret>suspend fun foo() {
foo()
}
@@ -0,0 +1,3 @@
fun foo() {
foo()
}