Fix casts of Unit value to other types
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
fun println(s: String) {
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
println(":Hi!") as Any
|
||||
return "OK"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
fun println(s: String) {
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val x = println(":Hi!") as Any
|
||||
if (x != Unit) return "Fail: $x"
|
||||
return "OK"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
fun println(s: String) {
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
val x = println(":Hi!") as? Any
|
||||
if (x != Unit) return "Fail: $x"
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user