diff options
Diffstat (limited to 'tests/bugs/abstractITDs')
-rw-r--r-- | tests/bugs/abstractITDs/A.java | 2 | ||||
-rw-r--r-- | tests/bugs/abstractITDs/B.aj | 3 | ||||
-rw-r--r-- | tests/bugs/abstractITDs/B.jar | bin | 0 -> 1396 bytes | |||
-rw-r--r-- | tests/bugs/abstractITDs/C.java | 2 | ||||
-rw-r--r-- | tests/bugs/abstractITDs/buildBJar.bat | 1 |
5 files changed, 8 insertions, 0 deletions
diff --git a/tests/bugs/abstractITDs/A.java b/tests/bugs/abstractITDs/A.java new file mode 100644 index 000000000..5d9e777af --- /dev/null +++ b/tests/bugs/abstractITDs/A.java @@ -0,0 +1,2 @@ +public abstract class A { +} diff --git a/tests/bugs/abstractITDs/B.aj b/tests/bugs/abstractITDs/B.aj new file mode 100644 index 000000000..54af3233e --- /dev/null +++ b/tests/bugs/abstractITDs/B.aj @@ -0,0 +1,3 @@ +public aspect B {
+ abstract public void A.foo();
+}
\ No newline at end of file diff --git a/tests/bugs/abstractITDs/B.jar b/tests/bugs/abstractITDs/B.jar Binary files differnew file mode 100644 index 000000000..b0fcaad10 --- /dev/null +++ b/tests/bugs/abstractITDs/B.jar diff --git a/tests/bugs/abstractITDs/C.java b/tests/bugs/abstractITDs/C.java new file mode 100644 index 000000000..8e6613707 --- /dev/null +++ b/tests/bugs/abstractITDs/C.java @@ -0,0 +1,2 @@ +public class C extends A { +}
\ No newline at end of file diff --git a/tests/bugs/abstractITDs/buildBJar.bat b/tests/bugs/abstractITDs/buildBJar.bat new file mode 100644 index 000000000..4905f255f --- /dev/null +++ b/tests/bugs/abstractITDs/buildBJar.bat @@ -0,0 +1 @@ +ajc A.java B.aj -outjar B.jar
|