Move debugger test data to the new location
This commit is contained in:
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
package stopInInlinedInSpecialNamedFun
|
||||
|
||||
// KT-12470
|
||||
|
||||
class Foo(bar: Bar) {
|
||||
init {
|
||||
with(bar) {
|
||||
{
|
||||
//Breakpoint!
|
||||
nop()
|
||||
nop()
|
||||
}()
|
||||
}
|
||||
}
|
||||
|
||||
fun nop() {}
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
Foo(Bar())
|
||||
}
|
||||
|
||||
class Bar
|
||||
|
||||
Reference in New Issue
Block a user