diff --git a/plugins/uast-kotlin/src/org/jetbrains/uast/kotlin/declarations/Suspend.kt b/plugins/uast-kotlin/src/org/jetbrains/uast/kotlin/declarations/Suspend.kt deleted file mode 100644 index b95cfe3866d..00000000000 --- a/plugins/uast-kotlin/src/org/jetbrains/uast/kotlin/declarations/Suspend.kt +++ /dev/null @@ -1,9 +0,0 @@ -package test.pkg - -class Context { - suspend fun inner(): Int = suspendPrivate() - private suspend fun suspendPrivate(): Int = inner() -} - - -suspend fun top(): Int = Context().inner()