summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interfaceLibrary/lib
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-08-06 07:31:16 +0000
committerwisberg <wisberg>2003-08-06 07:31:16 +0000
commitc09964fbdb4d97c60c3fc72b3061518369db5161 (patch)
treebb54234adcc567c2b306ad29887b1eab84accc9f /tests/bugs/interfaceLibrary/lib
parenta63bc04fb1cb6e8d6d0bc2a509ab9658e3d78c43 (diff)
downloadaspectj-c09964fbdb4d97c60c3fc72b3061518369db5161.tar.gz
aspectj-c09964fbdb4d97c60c3fc72b3061518369db5161.zip
@testcase PR#41175 aspect-declared methods with exception clauses fail in binary libraries
Corresponding non-binary passing tests added to ajcTests.xml
Diffstat (limited to 'tests/bugs/interfaceLibrary/lib')
-rw-r--r--tests/bugs/interfaceLibrary/lib/LibraryClass.java6
-rw-r--r--tests/bugs/interfaceLibrary/lib/LibraryInterface.java6
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs/interfaceLibrary/lib/LibraryClass.java b/tests/bugs/interfaceLibrary/lib/LibraryClass.java
new file mode 100644
index 000000000..4fa031640
--- /dev/null
+++ b/tests/bugs/interfaceLibrary/lib/LibraryClass.java
@@ -0,0 +1,6 @@
+
+package lib;
+
+public class LibraryClass {
+
+} \ No newline at end of file
diff --git a/tests/bugs/interfaceLibrary/lib/LibraryInterface.java b/tests/bugs/interfaceLibrary/lib/LibraryInterface.java
new file mode 100644
index 000000000..38f339b08
--- /dev/null
+++ b/tests/bugs/interfaceLibrary/lib/LibraryInterface.java
@@ -0,0 +1,6 @@
+
+package lib;
+
+public interface LibraryInterface {
+
+} \ No newline at end of file