summaryrefslogtreecommitdiffstats
path: root/tests/bugs151
diff options
context:
space:
mode:
authoraclement <aclement>2006-03-16 11:01:54 +0000
committeraclement <aclement>2006-03-16 11:01:54 +0000
commitf2cd94f88a9976fc98786955a764522a8ccb37f1 (patch)
treef65554a4be1e85ad6a171626db3192d40dab88d2 /tests/bugs151
parent973062a23697bf53ef926ff0235e2b85e5dc550d (diff)
downloadaspectj-f2cd94f88a9976fc98786955a764522a8ccb37f1.tar.gz
aspectj-f2cd94f88a9976fc98786955a764522a8ccb37f1.zip
test and fix for 131933
Diffstat (limited to 'tests/bugs151')
-rw-r--r--tests/bugs151/pr131933.aj11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs151/pr131933.aj b/tests/bugs151/pr131933.aj
new file mode 100644
index 000000000..a374c13af
--- /dev/null
+++ b/tests/bugs151/pr131933.aj
@@ -0,0 +1,11 @@
+import java.util.List;
+
+aspect Slide71 {
+ before(): GenericType<String>.foo() {}
+ before(): GenericType<MyList>.foo() {}
+ //before(): GenericType.foo() {}
+}
+
+class GenericType<T> {
+ public pointcut foo(): execution(* T.*(..));
+}