7 lines
188 B
Kotlin
Vendored
7 lines
188 B
Kotlin
Vendored
fun crashMe(values: List<String>): String {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
|
|
fun crashMe(values: List<CharSequence>): CharSequence {
|
|
throw UnsupportedOperationException()
|
|
} |