2b269b2652
- only report ABI errors if there's at least one other error - append additional helpful information to the "unresolved reference" error
8 lines
175 B
Kotlin
Vendored
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
|
|
}
|