summaryrefslogtreecommitdiffstats
path: root/tests/bugs162/pr145391
diff options
context:
space:
mode:
authoraclement <aclement>2008-08-20 20:48:25 +0000
committeraclement <aclement>2008-08-20 20:48:25 +0000
commit95bf99ab559ce926df99e84f811934f98eaf6b49 (patch)
tree818271f42f6c72b76a5fb48e3fd3c3814edefc6c /tests/bugs162/pr145391
parent89fb0653b48f0fb9316ec48edca0308ff60281d0 (diff)
downloadaspectj-95bf99ab559ce926df99e84f811934f98eaf6b49.tar.gz
aspectj-95bf99ab559ce926df99e84f811934f98eaf6b49.zip
remove unnecessary files
Diffstat (limited to 'tests/bugs162/pr145391')
-rw-r--r--tests/bugs162/pr145391/B.classbin433 -> 0 bytes
-rw-r--r--tests/bugs162/pr145391/x/GenericType2.java25
2 files changed, 0 insertions, 25 deletions
diff --git a/tests/bugs162/pr145391/B.class b/tests/bugs162/pr145391/B.class
deleted file mode 100644
index e91f70136..000000000
--- a/tests/bugs162/pr145391/B.class
+++ /dev/null
Binary files differ
diff --git a/tests/bugs162/pr145391/x/GenericType2.java b/tests/bugs162/pr145391/x/GenericType2.java
deleted file mode 100644
index 8d5fb565c..000000000
--- a/tests/bugs162/pr145391/x/GenericType2.java
+++ /dev/null
@@ -1,25 +0,0 @@
-interface Bar {}
-
-class B implements Bar {}
-
-public class GenericType2<V extends Bar> {
-
- public GenericType2(V value) {}
-
- protected void getValue(V aV) {
- }
- public void m() {
- getValue(new B());
-}
-}
-
-aspect SomeAspect {
- before(GenericType2 t): call(* GenericType2.foo()) && target(t) {
- // Indirect call to generic method produces a NoSuchMethodError
- t.callGenericMethod();
- }
-
- private void GenericType2.callGenericMethod() {
-// getValue(new Integer(45));
- }
-}