mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
15 lines
827 B
Plaintext
Vendored
15 lines
827 B
Plaintext
Vendored
warning: language version 1.1 is deprecated and its support will be removed in a future version of Kotlin
|
|
compiler/testData/cli/jvm/apiVersion1.0.kt:8:1: error: the feature "coroutines" is only available since API version 1.1 (see: https://kotlinlang.org/docs/diagnostics/experimental-coroutines)
|
|
suspend fun test() {
|
|
^
|
|
compiler/testData/cli/jvm/apiVersion1.0.kt:9:5: error: the feature "bound callable references" is only available since API version 1.1
|
|
""::class
|
|
^
|
|
compiler/testData/cli/jvm/apiVersion1.0.kt:10:5: error: the feature "bound callable references" is only available since API version 1.1
|
|
""::toString
|
|
^
|
|
compiler/testData/cli/jvm/apiVersion1.0.kt:15:11: error: the feature "local delegated properties" is only available since API version 1.1
|
|
val b by lazy { "" }
|
|
^
|
|
COMPILATION_ERROR
|