瀏覽代碼

testcode for 153490: nested delegate problems.

tags/BEFORE_133532
aclement 18 年之前
父節點
當前提交
43638daf5d

+ 4
- 0
tests/bugs153/pr153490/A.aj 查看文件

@@ -0,0 +1,4 @@
public aspect A {
public enum TestType {Pre};
}


+ 7
- 0
tests/bugs153/pr153490/A2.aj 查看文件

@@ -0,0 +1,7 @@
public aspect A2 {

public static class C {
public enum TestType {Pre};
}
}

+ 7
- 0
tests/bugs153/pr153490/Bar.java 查看文件

@@ -0,0 +1,7 @@
public class Bar {

public static void main(String[] args) {
A2.C.TestType pre = A2.C.TestType.Pre;
}

}

+ 7
- 0
tests/bugs153/pr153490/C.java 查看文件

@@ -0,0 +1,7 @@
public class C {

static aspect A {
public enum TestType {Pre};
}

}

+ 7
- 0
tests/bugs153/pr153490/Foo.java 查看文件

@@ -0,0 +1,7 @@
public class Foo {

public static void main(String[] args) {
A.TestType pre = A.TestType.Pre;
}

}

+ 6
- 0
tests/bugs153/pr153490/Goo.java 查看文件

@@ -0,0 +1,6 @@
public class Goo {

public static void main(String[] args) {
C.A.TestType pre = C.A.TestType.Pre;
}
}

二進制
tests/bugs153/pr153490/jarForBar.jar 查看文件


二進制
tests/bugs153/pr153490/jarForFoo.jar 查看文件


二進制
tests/bugs153/pr153490/jarForGoo.jar 查看文件


+ 5
- 0
tests/bugs153/pr153490/readme.txt 查看文件

@@ -0,0 +1,5 @@
to regenerate jarForFoo.jar: ajc A.aj -outjar required.jar -1.5 -noExit

to regenerate jarForBar.jar: ajc A2.aj -outjar jarForBar.jar -1.5 -noExit

to regenerate jarForGoo.jar: ajc C.java -outjar jarForGoo.jar -1.5 -noExit

二進制
tests/bugs153/pr153490/required.jar 查看文件


Loading…
取消
儲存