Fix test data for UL suspend declatations
(remove should-load-cls flag)
This commit is contained in:
@@ -1,19 +1,15 @@
|
|||||||
/** should load cls */
|
|
||||||
class Foo {
|
class Foo {
|
||||||
suspend fun doSomething(foo: Foo): Bar {}
|
suspend fun doSomething(foo: Foo): Bar {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** should load cls */
|
|
||||||
class Bar {
|
class Bar {
|
||||||
fun <T> async(block: suspend () -> T)
|
fun <T> async(block: suspend () -> T)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** should load cls */
|
|
||||||
interface Base {
|
interface Base {
|
||||||
suspend fun foo()
|
suspend fun foo()
|
||||||
}
|
}
|
||||||
|
|
||||||
/** should load cls */
|
|
||||||
class Derived: Base {
|
class Derived: Base {
|
||||||
override suspend fun foo() { ... }
|
override suspend fun foo() { ... }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
/** should load cls */
|
|
||||||
|
|
||||||
suspend fun doSomething(foo: String): Int {}
|
suspend fun doSomething(foo: String): Int {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user