2951e0b955
"oldJvm*" tests are no longer testing the old JVM backend, so remove that prefix from them. Also, remove the test "firAgainstOldJvm" because it is now checking something that cannot NOT work.
6 lines
91 B
Kotlin
Vendored
6 lines
91 B
Kotlin
Vendored
package lib
|
|
|
|
class Box(val value: String)
|
|
|
|
inline fun <T> get(block: () -> T): T = block()
|