KT-19634: Fix <boxed_value> == <primitive_value> converted to reference equality

#KT-19634 fixed
This commit is contained in:
Amane Nikaido
2017-08-18 21:20:26 +09:00
committed by Simon Ogorodnik
parent 9dc5354f24
commit 0fd5c6f1ca
5 changed files with 24 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
public class TestBoxedEqEqPrimitive {
public boolean test(Double value) {
return value == 3.14;
}
}