Files
kotlin-fork/compiler/testData/asJava/ultraLightClasses/coroutines.kt
T
Igor Yakovlev 2a1293e3ef Fix test data for UL suspend declatations
(remove should-load-cls flag)
2019-06-07 17:54:03 +03:00

16 lines
219 B
Kotlin
Vendored

class Foo {
suspend fun doSomething(foo: Foo): Bar {}
}
class Bar {
fun <T> async(block: suspend () -> T)
}
interface Base {
suspend fun foo()
}
class Derived: Base {
override suspend fun foo() { ... }
}