mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
13 lines
342 B
Kotlin
13 lines
342 B
Kotlin
package test
|
|
|
|
import kotlin.jvm.internal.KObject
|
|
import kotlin.jvm.internal.Intrinsics
|
|
|
|
fun foo(): String {
|
|
// This method call should be resolved to kotlin-runtime.jar
|
|
val r: String = Intrinsics.stringPlus(":", ")")
|
|
|
|
// This method call should be resolved to sources
|
|
return KObject.methodWhichDoesNotExistInKotlinRuntime()
|
|
}
|