8811165de8
Also workaround the NoSuchElementException that was happening because error type never has any type arguments #KT-14547 Fixed
8 lines
112 B
Kotlin
Vendored
8 lines
112 B
Kotlin
Vendored
import kotlin.reflect.*
|
|
|
|
fun foo() {
|
|
String::class.primaryConstructor
|
|
::foo.isExternal
|
|
listOf(42)
|
|
}
|