eb205f620c
Except AnnotationDescriptorImpl, which is refactored in the subsequent commit. Note that we no longer check the presence of parameters with the corresponding names in the annotation class in LazyJavaAnnotationDescriptor, this is why test data changed
12 lines
502 B
Plaintext
Vendored
12 lines
502 B
Plaintext
Vendored
package
|
|
|
|
public fun main(): kotlin.Unit
|
|
|
|
@missing.Ann(x = "") /* annotation class not found */ public open class A {
|
|
public constructor A()
|
|
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
@missing.Ann(value = 1) /* annotation class not found */ public open fun foo(): kotlin.String!
|
|
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
|
}
|