Minor. Renamed test.

This commit is contained in:
Evgeny Gerashchenko
2013-06-13 20:35:09 +04:00
parent ee9fcff9ca
commit d78f36a780
3 changed files with 5 additions and 5 deletions
@@ -0,0 +1,7 @@
fun box(): String {
var r = "FAIL"
val sub = Sub()
sub.safeInvoke(null)
sub.safeInvoke { r = "OK" }
return r
}