mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
- Do not longer call hashCode on java/lang/Object but do this on statically checked type. - Do not longer call Intrinsics.areEqual but use directly equals method on statically checked type. Fix of https://youtrack.jetbrains.com/issue/KT-12330
4 lines
122 B
Kotlin
Vendored
4 lines
122 B
Kotlin
Vendored
data class D(val x: List<String>)
|
|
|
|
// 1 INVOKEVIRTUAL java/lang/Object.hashCode
|
|
// 1 INVOKEVIRTUAL java/lang/Object.equals |