Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
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"
}