[Tests] Fix incorrect code in tests

This commit is contained in:
Kirill Rakhman
2024-01-23 12:45:17 +01:00
committed by Space Team
parent b509d8efc2
commit 213967e25c
3 changed files with 3 additions and 3 deletions
@@ -11,7 +11,7 @@ public class J {
package constructorVsFun;
public class G {
@kotlin.Deprecated("G", level = DeprecationLevel.HIDDEN)
@kotlin.Deprecated(message = "G", level = kotlin.DeprecationLevel.HIDDEN)
public G(String s) {}
}
@@ -11,7 +11,7 @@ public class J {
package constructorVsFun;
public class G {
@kotlin.Deprecated("G", level = DeprecationLevel.HIDDEN)
@kotlin.Deprecated(message = "G", level = kotlin.DeprecationLevel.HIDDEN)
public G(String s) {}
}
@@ -7,7 +7,7 @@ package constructorVsFun {
public fun b(): kotlin.Int
public open class G {
@kotlin.Deprecated(level = DeprecationLevel.HIDDEN, value = "G") public constructor G(/*0*/ s: kotlin.String!)
@kotlin.Deprecated(level = DeprecationLevel.HIDDEN, message = "G") public constructor G(/*0*/ s: kotlin.String!)
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String