diff options
author | aclement <aclement> | 2008-08-20 20:48:25 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-20 20:48:25 +0000 |
commit | 95bf99ab559ce926df99e84f811934f98eaf6b49 (patch) | |
tree | 818271f42f6c72b76a5fb48e3fd3c3814edefc6c /tests/bugs162/pr145391 | |
parent | 89fb0653b48f0fb9316ec48edca0308ff60281d0 (diff) | |
download | aspectj-95bf99ab559ce926df99e84f811934f98eaf6b49.tar.gz aspectj-95bf99ab559ce926df99e84f811934f98eaf6b49.zip |
remove unnecessary files
Diffstat (limited to 'tests/bugs162/pr145391')
-rw-r--r-- | tests/bugs162/pr145391/B.class | bin | 433 -> 0 bytes | |||
-rw-r--r-- | tests/bugs162/pr145391/x/GenericType2.java | 25 |
2 files changed, 0 insertions, 25 deletions
diff --git a/tests/bugs162/pr145391/B.class b/tests/bugs162/pr145391/B.class Binary files differdeleted file mode 100644 index e91f70136..000000000 --- a/tests/bugs162/pr145391/B.class +++ /dev/null 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)); - } -} |