aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr131932/pr131932.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model/pr131932/pr131932.aj')
-rw-r--r--tests/model/pr131932/pr131932.aj21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/model/pr131932/pr131932.aj b/tests/model/pr131932/pr131932.aj
new file mode 100644
index 000000000..648f9ed34
--- /dev/null
+++ b/tests/model/pr131932/pr131932.aj
@@ -0,0 +1,21 @@
+import java.util.List;
+
+aspect Slide74 {
+
+ public X Bar<X>.getFirst() {
+ return lts.get(0);
+ }
+
+ <T> Foo<T>.new(List<T> elements) { this(); }
+
+ private List<C> Bar<C>.children;// = new ArrayList<C>();
+
+ static class Bar<T> {
+ List<T> lts;
+ }
+
+}
+
+class Foo<T> {
+
+}