Array in data class inspection: warning on array properties in data classes #KT-10299 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-03-25 18:09:25 +03:00
parent 047828bd6d
commit 20bac6178c
7 changed files with 123 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
data class First(val x: Array<String>, val y: Int)
class Second(val x: Array<String>)
data class Third(val x: String, val y: IntArray)
data class Correct(val x: IntArray) {
override fun equals(other: Any?) = other is Correct
override fun hashCode() = 0
}