Generate function from Any for inline classes same as for data classes

#KT-24873 Fixed
 #KT-25293 Fixed
 #KT-25299 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2018-08-06 00:55:23 +03:00
parent 043ce1cb27
commit 6d4d244c28
37 changed files with 336 additions and 43 deletions
@@ -0,0 +1,51 @@
// !LANGUAGE: +InlineClasses
// IGNORE_BACKEND: JVM_IR, JS_IR, JS
inline class Foo(val x: Int)
inline class FooRef(val y: String)
inline class FooLong(val x: Long)
inline class FooDouble(val y: Double)
fun box(): String {
val f = Foo(42)
if (f.toString() != "Foo(x=42)") return "Fail 1: $f"
if (!f.equals(f)) return "Fail 2"
val g = Foo(43)
if (f.equals(g)) return "Fail 3"
if (42.hashCode() != f.hashCode()) return "Fail 4"
val fRef = FooRef("42")
if (fRef.toString() != "FooRef(y=42)") return "Fail 5: $fRef"
if (!fRef.equals(fRef)) return "Fail 6"
val gRef = FooRef("43")
if (fRef.equals(gRef)) return "Fail 7"
if ("42".hashCode() != fRef.hashCode()) return "Fail 8"
val fLong = FooLong(42)
if (fLong.toString() != "FooLong(x=42)") return "Fail 9: $fLong"
if (!fLong.equals(fLong)) return "Fail 10"
val gLong = FooLong(43)
if (fLong.equals(gLong)) return "Fail 11"
if (42L.hashCode() != fLong.hashCode()) return "Fail 12"
val fDouble = FooDouble(42.0)
if (fDouble.toString() != "FooDouble(y=42.0)") return "Fail 13: $fDouble"
if (!fDouble.equals(fDouble)) return "Fail 14"
val gDouble = FooDouble(43.0)
if (fDouble.equals(gDouble)) return "Fail 15"
if (42.0.hashCode() != fDouble.hashCode()) return "Fail 16"
return "OK"
}