Przeglądaj źródła

testcode for 153490: nested delegate problems.

tags/BEFORE_133532
aclement 17 lat temu
rodzic
commit
43638daf5d

+ 4
- 0
tests/bugs153/pr153490/A.aj Wyświetl plik

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


+ 7
- 0
tests/bugs153/pr153490/A2.aj Wyświetl plik

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

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

+ 7
- 0
tests/bugs153/pr153490/Bar.java Wyświetl plik

@@ -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 Wyświetl plik

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

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

}

+ 7
- 0
tests/bugs153/pr153490/Foo.java Wyświetl plik

@@ -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 Wyświetl plik

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

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

BIN
tests/bugs153/pr153490/jarForBar.jar Wyświetl plik


BIN
tests/bugs153/pr153490/jarForFoo.jar Wyświetl plik


BIN
tests/bugs153/pr153490/jarForGoo.jar Wyświetl plik


+ 5
- 0
tests/bugs153/pr153490/readme.txt Wyświetl plik

@@ -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

BIN
tests/bugs153/pr153490/required.jar Wyświetl plik


Ładowanie…
Anuluj
Zapisz