Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
javaSyntheticPropertyAccess.kt
blob: 3bc378fef0052c5e03894a4a0b9595b315ff863b [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// FILE: javaSyntheticPropertyAccess.kt
fun test
(
j
:
J
)
{
j
.
foo
j
.
foo
=
1
j
.
foo
++
j
.
foo
+=
1
}
// FILE: J.java
public
class
J
{
private
int
foo
=
42
;
public
int
getFoo
()
{
return
foo
;
}
public
void
setFoo
(
int
x
)
{}
}