aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs180
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-04-14 15:01:56 -0700
committerAndy Clement <aclement@gopivotal.com>2014-04-14 15:01:56 -0700
commit5aaca752afa424015f81379dcd0a69e737340e56 (patch)
tree15d2c5ccd54098757f9074dc822c3a1f55806861 /tests/bugs180
parent331399f82b33cc4cff8239aab18e405dfe0dd2b9 (diff)
downloadaspectj-5aaca752afa424015f81379dcd0a69e737340e56.tar.gz
aspectj-5aaca752afa424015f81379dcd0a69e737340e56.zip
Fix 432714: stack map frame and genericsV1_8_0RC3
Diffstat (limited to 'tests/bugs180')
-rw-r--r--tests/bugs180/pr432714/Code.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/bugs180/pr432714/Code.java b/tests/bugs180/pr432714/Code.java
new file mode 100644
index 000000000..af871ab18
--- /dev/null
+++ b/tests/bugs180/pr432714/Code.java
@@ -0,0 +1,25 @@
+public class Code {
+ public static void main(String[]argv) {
+ }
+
+ public void foo(UID x) {
+ bar((x instanceof UID ? E.one : E.two));
+ }
+
+ public static void bar(FM fm) { }
+}
+
+aspect X {
+ void around(): execution(* foo(..)) {
+ }
+}
+
+class E {
+ static BBB one;
+ static CCC two;
+ class BBB extends FM<String> {}
+ class CCC extends FM<Long> {}
+}
+class FM<T> {}
+
+class UID {}