Move debugger test data to the new location
This commit is contained in:
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
package valueParameterName
|
||||
|
||||
fun main() {
|
||||
"foo".foo()
|
||||
}
|
||||
|
||||
fun String.foo() {
|
||||
val a = Foo(
|
||||
a = this
|
||||
)
|
||||
val b = Foo(
|
||||
//Breakpoint!
|
||||
a = this
|
||||
)
|
||||
}
|
||||
|
||||
private class Foo(val a: String)
|
||||
|
||||
// EXPRESSION: this
|
||||
// RESULT: "foo": Ljava/lang/String;
|
||||
Reference in New Issue
Block a user