Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
inRangeConditionsInWhen.kt
blob: 09f2faa5557a043b83e09b76c891d08b2cc4dded [
file
] [
log
] [
blame
]
operator
fun
Int
.
contains
(
i
:
Int
)
=
true
fun box
():
String
{
when
(
1
)
{
in
2
->
return
"OK"
else
->
return
"fail"
}
}