ceeccfa1b7
IrGetBackingField / IrSetBackingField expressions.
15 lines
247 B
Kotlin
Vendored
15 lines
247 B
Kotlin
Vendored
// FILE: Derived.kt
|
|
// IR_FILE: setFieldWithImplicitCast.txt
|
|
class Derived : Base() {
|
|
fun setValue(v: Any) {
|
|
if (v is String) {
|
|
value = v
|
|
}
|
|
}
|
|
}
|
|
|
|
// FILE: Base.java
|
|
public class Base {
|
|
public String value;
|
|
}
|