Return Unit.VALUE if Unit or Any is expected

StackValue.coerce will do its job in casting void to Unit correctly

 #KT-4212 Fixed
This commit is contained in:
Alexander Udalov
2013-12-04 19:41:02 +04:00
parent f19ede0637
commit 6276dd1483
3 changed files with 26 additions and 4 deletions
@@ -0,0 +1,20 @@
fun foo(): Any? = bar()
fun bar() {}
fun baz(): Any? {
return bar()
}
fun quux(): Unit? = bar()
fun box(): String {
foo()
if (foo() != Unit.VALUE) return "Fail 1"
if (foo() != bar()) return "Fail 2"
if (bar() != baz()) return "Fail 3"
if (baz() != quux()) return "Fail 4"
return "OK"
}