Fix test data for android tests

This commit is contained in:
Michael Bogdanov
2014-10-29 17:01:45 +03:00
parent cede5ac58b
commit 8e93719e9d
3 changed files with 5 additions and 5 deletions
@@ -1,10 +1,10 @@
inline fun test(s: ()->Int): Int {
inline fun test(s: ()->Int){
var i = 0;
i = s()
try {
i = i + 10
} finally {
return i
i
}
}