UAST: delete redundant file

This is rather a test input, and indeed there is testData/Suspend.kt
This commit is contained in:
Jinseong Jeon
2021-06-14 14:06:42 -07:00
committed by Ilya Kirillov
parent 4e4b104488
commit dcf99e9fd1
@@ -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()