Rename LoadJava annotations test data

This commit is contained in:
Alexander Udalov
2013-09-06 20:02:23 +04:00
parent 5805598306
commit ccff9e38fe
22 changed files with 92 additions and 92 deletions

View File

@@ -0,0 +1,10 @@
package test;
public class ArithmeticExpressionInParam {
public @interface Anno {
int value();
}
@Anno(2 * 8 + 13 * (239 - 237))
public static class Class {}
}