Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
setFieldWithImplicitCast.kt
blob: 0714621bcaf3c6ebd523029ef651314c2a5245bd [
file
] [
log
] [
blame
]
// 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
;
}