Files
kotlin-fork/idea/testData/multiModuleQuickFix/generateHashCodeInExpect/common/common.kt.after
T
2018-11-13 10:15:48 +03:00

10 lines
280 B
Plaintext
Vendored

// "Generate 'hashCode()'" "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 equals(other: Any?): Boolean
override fun hashCode(): Int
}