ktListConcat

fun <T> ktListConcat(l1: List<T>, l2: List<T>): List<T>

Concatenates l1 and l2, callable from Java (+ on List is a Kotlin-only operator) as TestUtils.ktListConcat(l1, l2). As of this writing, no test source set in the repository calls it.