Debugger: do not put breakpoints at lines from another file in case of inline function

This commit is contained in:
Natalia Ukhorskaya
2016-02-16 15:30:51 +03:00
parent 42927bb078
commit c5d788d049
6 changed files with 33 additions and 2 deletions
@@ -0,0 +1,5 @@
package inlineFunctionWithBreakpoint
inline fun myFun(f: (Int) -> Unit) {
f(1)
}