Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt3114.kt
blob: f28569e1d971d5f37edac2dcace92f61a4930f35 [
file
] [
log
] [
blame
]
class
KeySpan
(
val left
:
String
)
{
public
fun matches
(
value
:
String
)
:
Boolean
{
return
left
>
value
&&
left
>
value
}
}
fun box
()
:
String
{
KeySpan
(
"1"
).
matches
(
"3"
)
return
"OK"
}