diff options
author | Andy Clement <aclement@pivotal.io> | 2016-01-05 13:06:22 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2016-01-05 13:06:22 -0800 |
commit | d9029474077ebd405ec34d44913eed3051f2691e (patch) | |
tree | 7a6ff9cb209f4fbe15696e3ef31b11c32f0f5fe3 /tests/bugs188/484941 | |
parent | 9b220fe52ad9bb117140692f7cf455d78a17be11 (diff) | |
download | aspectj-d9029474077ebd405ec34d44913eed3051f2691e.tar.gz aspectj-d9029474077ebd405ec34d44913eed3051f2691e.zip |
Fix 484941 - NPE AnnotationDiscoveryVisitor
Diffstat (limited to 'tests/bugs188/484941')
-rw-r--r-- | tests/bugs188/484941/Test2.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs188/484941/Test2.java b/tests/bugs188/484941/Test2.java new file mode 100644 index 000000000..fd2623575 --- /dev/null +++ b/tests/bugs188/484941/Test2.java @@ -0,0 +1,10 @@ +
+@ContextConfiguration
+public class Test2 {
+ static class ContextConfiguration {
+
+ }
+}
+
+@interface ContextConfiguration {
+}
|