mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
915 B
Plaintext
Vendored
13 lines
915 B
Plaintext
Vendored
error: incompatible classes were found in dependencies. Remove them from the classpath or use '-Xskip-metadata-version-check' to suppress errors
|
|
compiler/testData/cli/jvm/wrongAbiVersion.kt:3:12: error: class 'ClassWithWrongAbiVersion' was compiled with an incompatible version of Kotlin. The binary version of its metadata is 0.30.0, expected version is $ABI_VERSION$.
|
|
The class is loaded from $TESTDATA_DIR$/wrongAbiVersionLib/bin/ClassWithWrongAbiVersion.class
|
|
fun foo(x: ClassWithWrongAbiVersion) {
|
|
^
|
|
compiler/testData/cli/jvm/wrongAbiVersion.kt:4:5: error: unresolved reference: bar
|
|
bar()
|
|
^
|
|
compiler/testData/cli/jvm/wrongAbiVersion.kt:6:7: error: unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
|
|
public fun String.replaceIndent(newIndent: String = ...): String defined in kotlin.text
|
|
1.replaceIndent(2, 3)
|
|
^
|
|
COMPILATION_ERROR |