Replaced deprecated inline classes with JvmInline value classes in tests

This commit is contained in:
zhelenskiy
2021-10-09 02:31:28 +03:00
committed by TeamCityServer
parent b0aefd543a
commit 1da46586bd
386 changed files with 1480 additions and 840 deletions
@@ -11,12 +11,14 @@ interface IFooBar {
interface IFooBar2 : IFooBar
inline class Test1(val k: String): IFooBar {
@JvmInline
value class Test1(val k: String): IFooBar {
override val bar: String
get() = k
}
inline class Test2(val k: String): IFooBar2 {
@JvmInline
value class Test2(val k: String): IFooBar2 {
override val bar: String
get() = k
}