mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-06 08:31:30 +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.
12 lines
218 B
Java
Vendored
12 lines
218 B
Java
Vendored
package test;
|
|
|
|
class AnnotatedParameterInInnerClassConstructor {
|
|
|
|
public @interface Anno {
|
|
String value();
|
|
}
|
|
|
|
class JavaEnum {
|
|
JavaEnum(@Anno("a") String a , @Anno("b") String b) {}
|
|
}
|
|
} |