Fixed KT-5493: NPE fix

This commit is contained in:
Denis Zharkov
2014-07-17 18:42:51 +04:00
parent da3fcae2ba
commit 0b2b8ba816
3 changed files with 14 additions and 1 deletions
@@ -0,0 +1,8 @@
fun box() : String {
try {
return "OK"
}
finally {
null?.hashCode()
}
}