Files
kotlin-fork/compiler/testData/cli/jvm/wrongAbiVersionNoErrors.kt
T
Alexander Udalov 2b269b2652 Improve ABI version error reporting in the compiler
- only report ABI errors if there's at least one other error
- append additional helpful information to the "unresolved reference" error
2015-09-16 01:44:27 +03:00

8 lines
175 B
Kotlin
Vendored

// This should compile despite the fact that there are usages of symbols with the wrong ABI version!
import wrong.ClassWithInnerLambda
fun happy(): Int {
return 2 + 2
}