]> source.dussan.org Git - aspectj.git/commitdiff
tests for
authorjhugunin <jhugunin>
Sun, 27 Apr 2003 23:30:14 +0000 (23:30 +0000)
committerjhugunin <jhugunin>
Sun, 27 Apr 2003 23:30:14 +0000 (23:30 +0000)
Bugzilla Bug 36936
   Error when introducing members of type Class

tests/bugs/interSpecials/Asp.java [new file with mode: 0644]
tests/bugs/interSpecials/Trg.java [new file with mode: 0644]

diff --git a/tests/bugs/interSpecials/Asp.java b/tests/bugs/interSpecials/Asp.java
new file mode 100644 (file)
index 0000000..f1aafec
--- /dev/null
@@ -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 (file)
index 0000000..c47841b
--- /dev/null
@@ -0,0 +1,6 @@
+public class Trg { 
+       public static void main(String args[]) { 
+               new Trg(); 
+               System.out.println("All ok"); 
+       } 
+}