diff options
author | jhugunin <jhugunin> | 2003-04-27 23:30:14 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-04-27 23:30:14 +0000 |
commit | 8d793a3f9960f101a4cae59b959ce612f3fef4c9 (patch) | |
tree | 50bcb35bd081b9625352c3e471f92dd7847521f6 /tests | |
parent | f236927770b4c1029e4d108c3991870609555dfb (diff) | |
download | aspectj-8d793a3f9960f101a4cae59b959ce612f3fef4c9.tar.gz aspectj-8d793a3f9960f101a4cae59b959ce612f3fef4c9.zip |
tests for
Bugzilla Bug 36936
Error when introducing members of type Class
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs/interSpecials/Asp.java | 3 | ||||
-rw-r--r-- | tests/bugs/interSpecials/Trg.java | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs/interSpecials/Asp.java b/tests/bugs/interSpecials/Asp.java new file mode 100644 index 000000000..f1aafec0a --- /dev/null +++ b/tests/bugs/interSpecials/Asp.java @@ -0,0 +1,3 @@ +public aspect Asp { + public Class Trg.member = String.class; +}
\ No newline at end of file diff --git a/tests/bugs/interSpecials/Trg.java b/tests/bugs/interSpecials/Trg.java new file mode 100644 index 000000000..c47841b94 --- /dev/null +++ b/tests/bugs/interSpecials/Trg.java @@ -0,0 +1,6 @@ +public class Trg { + public static void main(String args[]) { + new Trg(); + System.out.println("All ok"); + } +} |