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:
Mikhael Bogdanov
2019-01-07 10:41:45 +01:00
parent 57489febf0
commit 8ce7112123
24 changed files with 432 additions and 0 deletions
@@ -0,0 +1,12 @@
package test;
class AnnotatedParameterInInnerClassConstructor {
public @interface Anno {
String value();
}
class JavaEnum {
JavaEnum(@Anno("a") String a , @Anno("b") String b) {}
}
}