Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt725.kt
blob: ec4ec35d78282dfc1bf0355452e17f6fe51ce7af [
file
]
operator
fun
Int
?.
inc
()
=
this
!!.
inc
()
fun box
()
:
String
{
var
i
:
Int
?
=
10
val j
=
i
++
return
if
(
j
==
10
&&
11
==
i
)
"OK"
else
"fail"
}