Add tests

This commit is contained in:
Roman Artemev
2018-10-19 19:26:26 +03:00
committed by romanart
parent 7cb202934c
commit 59b1743c37
9 changed files with 75 additions and 0 deletions
@@ -0,0 +1,4 @@
fun box(): String {
// kotlin.Nothing should not be loaded here
return (if (null is Nothing?) "O" else "FAIL1") + (if (null !is Nothing) "K" else "FAIL2")
}