mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
Fix exception during step into inline function in library
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package customLib.functionInLibrary
|
||||
|
||||
public inline fun simpleFun2() {
|
||||
val a = 1
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package customLib.functionInLibrary
|
||||
|
||||
public inline fun simpleFun() {
|
||||
nextFun()
|
||||
}
|
||||
|
||||
public inline fun nextFun() {
|
||||
val a = 1
|
||||
}
|
||||
Reference in New Issue
Block a user