Fix tests after adding lineNumber for functions without return expression

This commit is contained in:
Natalia Ukhorskaya
2014-11-07 16:45:04 +03:00
parent 323df9498a
commit 42257218b6
10 changed files with 13 additions and 10 deletions
@@ -31,7 +31,8 @@ fun foo(i: Int) = i
//Breakpoint!
fun fooOneLine(i: Int): Int { return 1 }
// Cannot stop at this breakpoint - empty body
// EXPRESSION: i
// RESULT: 2: I
//Breakpoint!
fun fooEmpty(i: Int) {}