ec6fdc5d4d
Replace 'isExternal' with 'name', since 'name' is still available in builtins and 'isExternal' is only accessible with a proper stdlib dependency.
9 lines
122 B
Kotlin
Vendored
9 lines
122 B
Kotlin
Vendored
import kotlin.reflect.*
|
|
|
|
fun foo() {
|
|
String::class.primaryConstructor
|
|
Void::class
|
|
::foo.name
|
|
listOf(42)
|
|
}
|