830d2f6603
Catch all exceptions when deserializing metadata with an incompatible version to prevent the compiler from failing on discovering incompatible classes on the classpath. Note that this is not the perfect solution: any invariant may be broken in the incompatible metadata and it may result in a later exception
14 lines
134 B
Kotlin
Vendored
14 lines
134 B
Kotlin
Vendored
package a
|
|
|
|
open class A {
|
|
class Nested
|
|
|
|
fun method() {}
|
|
|
|
val quux = ""
|
|
}
|
|
|
|
fun foo() {}
|
|
var bar = 42
|
|
typealias TA = String
|