Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
smap
/
inlineProperty.kt
blob: 5ca83c91164a864315fe3ab56e792754ddf02605 [
file
] [
log
] [
blame
]
// 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"
}