Caleb Cushing
10/18/2024, 6:28 PMsuites {
val test by getting(JvmTestSuite::class) {
}
and not
val test by getting<JvmTestSuite>() {Vampire
10/18/2024, 7:18 PMgetting<TestSuite, JvmTestSuite>() then.
With the class as argument, the type argument can be inferred.
And either have to make all type arguments explicit, or all inferred.ephemient
10/19/2024, 3:17 AM::class you can also affect the interference by writing the type on the lhs,
val test: JvmTestSuite by getting