Fix test data for UL suspend declatations

(remove should-load-cls flag)
This commit is contained in:
Igor Yakovlev
2019-06-06 16:59:37 +03:00
parent 63d7e479c6
commit 2a1293e3ef
2 changed files with 0 additions and 5 deletions
@@ -1,19 +1,15 @@
/** should load cls */
class Foo {
suspend fun doSomething(foo: Foo): Bar {}
}
/** should load cls */
class Bar {
fun <T> async(block: suspend () -> T)
}
/** should load cls */
interface Base {
suspend fun foo()
}
/** should load cls */
class Derived: Base {
override suspend fun foo() { ... }
}
@@ -1,4 +1,3 @@
/** should load cls */
suspend fun doSomething(foo: String): Int {}