Files
kotlin-fork/idea/testData/multiModuleQuickFix/other/generateEqualsInExpect/common/common.kt.after
T
2019-08-27 17:26:08 +07:00

10 lines
278 B
Plaintext
Vendored

// "Generate 'equals()'" "true"
// TOOL: org.jetbrains.kotlin.idea.inspections.EqualsOrHashCodeInspection
expect class With<caret>Constructor(x: Int, s: String) {
val x: Int
val s: String
override fun hashCode(): Int
override fun equals(other: Any?): Boolean
}