2a1293e3ef
(remove should-load-cls flag)
16 lines
219 B
Kotlin
Vendored
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() { ... }
|
|
}
|