failing test

This commit is contained in:
Dmitry Jemerov
2011-04-07 12:14:25 +02:00
parent dc326ca3cd
commit e61e908ab7
2 changed files with 13 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
fun f(x: Int, b: Boolean): Int {
var result = x;
if (b) else result = result + 5;
return result;
}