aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs181
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-05-12 12:18:46 -0700
committerAndy Clement <aclement@gopivotal.com>2014-05-12 12:18:46 -0700
commit70f2e6d63556b1ca0158021045348fca2ea4fc86 (patch)
treecd1dafd8b97b56780fa93b95d9bda08c99409339 /tests/bugs181
parente5d3d2fa37191a77c003a1a4c6a5b867f3e549cb (diff)
downloadaspectj-70f2e6d63556b1ca0158021045348fca2ea4fc86.tar.gz
aspectj-70f2e6d63556b1ca0158021045348fca2ea4fc86.zip
377096: Fix for corrupt annotation creation
Diffstat (limited to 'tests/bugs181')
-rw-r--r--tests/bugs181/377096/A.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs181/377096/A.java b/tests/bugs181/377096/A.java
new file mode 100644
index 000000000..78d21d8ed
--- /dev/null
+++ b/tests/bugs181/377096/A.java
@@ -0,0 +1,7 @@
+@interface A {
+ int i();
+}
+class C {
+ @A(wibble={},i=42)
+ public void xxx() {}
+} \ No newline at end of file