Files
kotlin-fork/idea/testData/multiModuleQuickFix/generateEqualsInExpect/common/common.kt.after
T
2018-11-13 10:15:48 +03: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
}