blob: 9af7b9bc26d75cbb332409b3371e6ac200a7a92a [file] [log] [blame]
object Test {
fun checkState(condition: Boolean, message: String?, vararg args: Any?) {}
fun checkState(condition: Boolean) {
checkState(condition, "condition not met")
}
}