ソースを参照

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 ファイルの表示


読み込み中…
キャンセル
保存