diff --git a/compiler/testData/diagnostics/tests/java8Overrides/implementingMethodOfAny.kt b/compiler/testData/diagnostics/tests/java8Overrides/implementingMethodOfAny.kt index 4f5a06bb33b..49d17cc114a 100644 --- a/compiler/testData/diagnostics/tests/java8Overrides/implementingMethodOfAny.kt +++ b/compiler/testData/diagnostics/tests/java8Overrides/implementingMethodOfAny.kt @@ -1,7 +1,7 @@ interface IA { override fun toString(): String = "IA" - override fun equals(other: Any?): Boolean = super.equals(other) + override fun equals(other: Any?): Boolean = super.equals(other) override fun hashCode(): Int { return 42;