25edf64daf
This is needed for kapt + JVM IR. #KT-49682
8 lines
189 B
Kotlin
Vendored
8 lines
189 B
Kotlin
Vendored
fun crashMe(values: List<String>): String {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
|
|
fun crashMe(values: List<CharSequence>): CharSequence {
|
|
throw UnsupportedOperationException()
|
|
}
|