Go to Implementation: Support suspend functions
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
interface I {
|
||||
suspend fun <caret>foo(s: String)
|
||||
}
|
||||
|
||||
// REF: [js] (in test.C).foo(String)
|
||||
// REF: [jvm] (in test.C).foo(String)
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class C : I {
|
||||
override suspend fun foo(s: String) { }
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
class C : I {
|
||||
override suspend fun foo(s: String) { }
|
||||
}
|
||||
Reference in New Issue
Block a user