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
301 B
Plaintext
Vendored
12 lines
301 B
Plaintext
Vendored
package test
|
|
|
|
public fun bar(): @test.Ann kotlin.String
|
|
|
|
public interface Ann {
|
|
}
|
|
|
|
@test.Ann(s = "class") public final class Test {
|
|
public constructor Test()
|
|
@test.Ann(s = "function") public final fun foo(/*0*/ @test.Ann(s = "parameter") s: @test.Ann kotlin.String): @test.Ann kotlin.String
|
|
}
|