aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1921
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2024-03-02 09:08:48 +0100
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-03-02 10:34:26 +0100
commit27f14f4d6ffa6bf5cc79fec29fbddf9274a6ad5f (patch)
treece7f00bad90b10fb8475748509dbe81fbf1c5ea6 /tests/bugs1921
parent2fa6a868509fc636088fac51945c37858da19ad1 (diff)
downloadaspectj-27f14f4d6ffa6bf5cc79fec29fbddf9274a6ad5f.tar.gz
aspectj-27f14f4d6ffa6bf5cc79fec29fbddf9274a6ad5f.zip
Add Bugs1921Tests::testGitHub_285
This is an additional reproducer for regression bug #285. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/bugs1921')
-rw-r--r--tests/bugs1921/github_285/Unwoven.java5
-rw-r--r--tests/bugs1921/github_285/aop.xml5
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs1921/github_285/Unwoven.java b/tests/bugs1921/github_285/Unwoven.java
new file mode 100644
index 000000000..131cbec84
--- /dev/null
+++ b/tests/bugs1921/github_285/Unwoven.java
@@ -0,0 +1,5 @@
+public class Unwoven {
+ public static void main(String[] args) {
+ System.out.println("Hello world");
+ }
+}
diff --git a/tests/bugs1921/github_285/aop.xml b/tests/bugs1921/github_285/aop.xml
new file mode 100644
index 000000000..05837da42
--- /dev/null
+++ b/tests/bugs1921/github_285/aop.xml
@@ -0,0 +1,5 @@
+<aspectj>
+ <weaver>
+ <include within="*"/>
+ </weaver>
+</aspectj>