2e131b870a
#KT-38804 Obsolete #KT-38801 Obsolete #KT-38835 Obsolete #KT-38737 Obsolete #KT-38664 Obsolete #KT-38549 Obsolete #KT-38766 Obsolete #KT-38714 Obsolete
18 lines
383 B
Kotlin
Vendored
18 lines
383 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun test(b: TestRepo) {
|
|
coEvery1 { b.save(any()) }
|
|
}
|
|
|
|
fun <T> coEvery1(stubBlock: suspend MockKMatcherScope.() -> T) {}
|
|
|
|
class MockKMatcherScope {
|
|
inline fun <reified T : Any> any(): T = TODO()
|
|
}
|
|
|
|
class TestRepo : CrudRepository<Int, String>
|
|
|
|
interface CrudRepository<T, K> {
|
|
fun <S : T?> save(entity: S): S = TODO()
|
|
} |