Files
kotlin-fork/compiler/testData/cli/jvm/noStdlib.kt
T
Ilya Gorbunov ec6fdc5d4d Fix noStdlib cli test
Replace 'isExternal' with 'name', since 'name' is still available in builtins and 'isExternal' is only accessible with a proper stdlib dependency.
2020-01-16 15:33:16 +03:00

9 lines
122 B
Kotlin
Vendored

import kotlin.reflect.*
fun foo() {
String::class.primaryConstructor
Void::class
::foo.name
listOf(42)
}