aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160
diff options
context:
space:
mode:
authoraclement <aclement>2008-03-11 16:08:44 +0000
committeraclement <aclement>2008-03-11 16:08:44 +0000
commit3a64e7efe65ed2e50969a0270e124e822c742eee (patch)
treeb4fb6e8bf57ad36c70fe823277f29942dec3b6bb /tests/bugs160
parenta31b3dea01cbf925e6b22ef8789b3a3d86fd9160 (diff)
downloadaspectj-3a64e7efe65ed2e50969a0270e124e822c742eee.tar.gz
aspectj-3a64e7efe65ed2e50969a0270e124e822c742eee.zip
201748: new testcase, currently commented out
Diffstat (limited to 'tests/bugs160')
-rw-r--r--tests/bugs160/pr201748/Foo.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs160/pr201748/Foo.java b/tests/bugs160/pr201748/Foo.java
new file mode 100644
index 000000000..8faf23eaf
--- /dev/null
+++ b/tests/bugs160/pr201748/Foo.java
@@ -0,0 +1,18 @@
+aspect MA {
+ Factory AnyClass.myfactory = Factory.create();
+}
+
+class Factory {
+ public static Factory[] create() {
+ return null;
+ }
+}
+
+class AnyClass {
+}
+
+public class Foo {
+ public static void main(String []argv) {
+ new AnyClass();
+ }
+} \ No newline at end of file