aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2005-08-08 08:36:05 +0000
committeraclement <aclement>2005-08-08 08:36:05 +0000
commitf2d4dce3c8ad4afd59807dc36fb4d3fe23a841c6 (patch)
treeb29d5a2989d02d40968167a1482fcdd111ae16bd /tests
parent7e71de736f50a564628a7b04b36f2b6d07f73b5a (diff)
downloadaspectj-f2d4dce3c8ad4afd59807dc36fb4d3fe23a841c6.tar.gz
aspectj-f2d4dce3c8ad4afd59807dc36fb4d3fe23a841c6.zip
genericitds: sharing type variables with generic type - parsing test
Diffstat (limited to 'tests')
-rw-r--r--tests/java5/generics/itds/Parse6.aj16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/java5/generics/itds/Parse6.aj b/tests/java5/generics/itds/Parse6.aj
new file mode 100644
index 000000000..d9f93b288
--- /dev/null
+++ b/tests/java5/generics/itds/Parse6.aj
@@ -0,0 +1,16 @@
+class Base<N extends Number> {
+
+ public List<N> f1;
+
+ public void m1(List<N> ns) {}
+
+}
+
+aspect X {
+
+ public List<Z> Base<Z>.f2;
+
+ public void Base<Z>.m1(List<Z> ns) {}
+
+}
+