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