1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
13 lines
205 B
Kotlin
13 lines
205 B
Kotlin
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"
|
|
} |