aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/transform/resource/after-delombok/WithInnerAnnotation.java5
-rw-r--r--test/transform/resource/after-ecj/WithInnerAnnotation.java8
-rw-r--r--test/transform/resource/before/WithInnerAnnotation.java5
3 files changed, 18 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WithInnerAnnotation.java b/test/transform/resource/after-delombok/WithInnerAnnotation.java
new file mode 100644
index 00000000..a8decfeb
--- /dev/null
+++ b/test/transform/resource/after-delombok/WithInnerAnnotation.java
@@ -0,0 +1,5 @@
+class WithInnerAnnotation {
+ @interface Inner {
+ int bar() default 42;
+ }
+} \ No newline at end of file
diff --git a/test/transform/resource/after-ecj/WithInnerAnnotation.java b/test/transform/resource/after-ecj/WithInnerAnnotation.java
new file mode 100644
index 00000000..ac9f161d
--- /dev/null
+++ b/test/transform/resource/after-ecj/WithInnerAnnotation.java
@@ -0,0 +1,8 @@
+class WithInnerAnnotation {
+ @interface Inner {
+ int bar() default 42;
+ }
+ WithInnerAnnotation() {
+ super();
+ }
+} \ No newline at end of file
diff --git a/test/transform/resource/before/WithInnerAnnotation.java b/test/transform/resource/before/WithInnerAnnotation.java
new file mode 100644
index 00000000..a8decfeb
--- /dev/null
+++ b/test/transform/resource/before/WithInnerAnnotation.java
@@ -0,0 +1,5 @@
+class WithInnerAnnotation {
+ @interface Inner {
+ int bar() default 42;
+ }
+} \ No newline at end of file