d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
14 lines
229 B
Kotlin
Vendored
14 lines
229 B
Kotlin
Vendored
class SomeClass {
|
|
fun doSomeIf(i: Int) {
|
|
val a: Int
|
|
val b: Int
|
|
val c: Int
|
|
if (i < 0) {
|
|
b = i
|
|
a = b
|
|
} else {
|
|
c = i
|
|
b = c
|
|
}
|
|
}
|
|
} |