Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
smap
/
inlineProperty.kt
blob: 5ca83c91164a864315fe3ab56e792754ddf02605 [
file
]
// FILE: 1.kt
class
A
{
inline
val s
:
Int
get
()
=
1
}
// FILE: 2.kt
fun box
():
String
{
val a
=
A
()
var
y
=
a
.
s
y
++
return
"OK"
}