diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-11-26 07:34:01 +0100 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-11-26 08:51:18 +0100 |
commit | cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de (patch) | |
tree | f2958db2719adda5efd3b5f07cdab336efece4e6 /tests/bugs198/github_105/FooAspect.aj | |
parent | bc2c65717d96e5e9cc1a454e5b0f8f258f2d802e (diff) | |
download | aspectj-cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de.tar.gz aspectj-cbdb8e067c1c2b0d8ac19015ea4f7aa224eb54de.zip |
Incorporate JDT Core fix + test for #105
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests/bugs198/github_105/FooAspect.aj')
-rw-r--r-- | tests/bugs198/github_105/FooAspect.aj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/bugs198/github_105/FooAspect.aj b/tests/bugs198/github_105/FooAspect.aj new file mode 100644 index 000000000..0d8e10d9b --- /dev/null +++ b/tests/bugs198/github_105/FooAspect.aj @@ -0,0 +1,4 @@ +public aspect FooAspect { + declare @type:(@FooAnnotation *) : + @BarAnnotation(name = "from FooAspect"); +} |