5 lines
122 B
Kotlin
Vendored
5 lines
122 B
Kotlin
Vendored
fun box() = expectThrowableMessage {
|
|
val hello = "Hello"
|
|
assert(hello.length == "World".substring(1, 4).length)
|
|
}
|