Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
property
/
kt22649.kt
blob: c5f4af454f64e194eda8f677c51cccd990228998 [
file
]
// FILE: 1.kt
var
result
=
""
inline
var
apx
:
Int
get
()
=
0
set
(
value
)
{
result
=
if
(
value
==
1
)
"OK"
else
"fail"
}
// FILE: 2.kt
fun test
(
s
:
Int
?)
{
apx
=
s
!!
}
fun box
()
:
String
{
test
(
1
)
return
result
}