Move debugger test data to the new location
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
package inlineProperties
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
class A {
|
||||
inline val a: String
|
||||
get() {
|
||||
//Breakpoint!
|
||||
return System.nanoTime().toString()
|
||||
}
|
||||
}
|
||||
|
||||
A().apply { a }
|
||||
B().apply { b }
|
||||
}
|
||||
|
||||
class B {
|
||||
inline val b: String
|
||||
get() {
|
||||
//Breakpoint!
|
||||
return System.nanoTime().toString()
|
||||
}
|
||||
}
|
||||
|
||||
// RESUME: 2
|
||||
Reference in New Issue
Block a user