From dcf99e9fd1b25129e18e5f915c3dc299c4d5eb90 Mon Sep 17 00:00:00 2001 From: Jinseong Jeon Date: Mon, 14 Jun 2021 14:06:42 -0700 Subject: [PATCH] UAST: delete redundant file This is rather a test input, and indeed there is testData/Suspend.kt --- .../org/jetbrains/uast/kotlin/declarations/Suspend.kt | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 plugins/uast-kotlin/src/org/jetbrains/uast/kotlin/declarations/Suspend.kt 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()