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