New tests for TYPE_USE annotations in enums and inner classes
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.
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
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!)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user