From f67aaa49b71a2bee74735a17a2267cda1ef7ea8d Mon Sep 17 00:00:00 2001 From: "Pavel V. Talanov" Date: Thu, 24 May 2012 17:37:21 +0400 Subject: [PATCH] Include test file accidentally omitted by previous commit --- .../testFiles/expression/misc/cases/exclExclThrows.kt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 js/js.translator/testFiles/expression/misc/cases/exclExclThrows.kt diff --git a/js/js.translator/testFiles/expression/misc/cases/exclExclThrows.kt b/js/js.translator/testFiles/expression/misc/cases/exclExclThrows.kt new file mode 100644 index 00000000000..08bc45ebea7 --- /dev/null +++ b/js/js.translator/testFiles/expression/misc/cases/exclExclThrows.kt @@ -0,0 +1,8 @@ +package foo + + +fun box() : Boolean { + val a : Int? = null + + return (a!! + 3) == 3 +} \ No newline at end of file