16 lines
270 B
Kotlin
Vendored
16 lines
270 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// 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;
|
|
}
|