mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
Main test data (testName.txt) a not totally valid cause of IDEA-205039. Javac test data (testName.javac.txt) a not valid cause of type annotations support absence. Runtime tests are disabled cause reflection support absence.
15 lines
629 B
Plaintext
Vendored
15 lines
629 B
Plaintext
Vendored
package test
|
|
|
|
public/*package*/ open class AnnotatedParameterInInnerClassConstructor {
|
|
public/*package*/ constructor AnnotatedParameterInInnerClassConstructor()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
|
|
public/*package*/ open inner class JavaEnum {
|
|
public/*package*/ constructor JavaEnum(/*0*/ @test.AnnotatedParameterInInnerClassConstructor.Anno(value = "a") p0: kotlin.String!, /*1*/ @test.AnnotatedParameterInInnerClassConstructor.Anno(value = "b") p1: kotlin.String!)
|
|
}
|
|
}
|