13 lines
167 B
Kotlin
Vendored
13 lines
167 B
Kotlin
Vendored
package evDuplicateItems
|
|
|
|
class A {
|
|
var prop = 1
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = A()
|
|
//Breakpoint!
|
|
val b = a.prop + a.prop
|
|
}
|
|
|
|
// PRINT_FRAME |