Fix exception during step into inline function in library

This commit is contained in:
Natalia Ukhorskaya
2015-05-22 17:18:34 +03:00
parent 2538ebe407
commit 1cfed000c4
6 changed files with 46 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
package customLib.functionInLibrary
public inline fun simpleFun2() {
val a = 1
}

View File

@@ -0,0 +1,9 @@
package customLib.functionInLibrary
public inline fun simpleFun() {
nextFun()
}
public inline fun nextFun() {
val a = 1
}