aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/333066
diff options
context:
space:
mode:
authorAndy Clement <aclement@gopivotal.com>2014-08-20 08:02:41 -0700
committerAndy Clement <aclement@gopivotal.com>2014-08-20 08:02:41 -0700
commit62b5e69a857ef64c71c39176d3fadc51c308ea02 (patch)
treeeb44ee4a239ccd170e685dea02c0afd838cdf080 /tests/bugs183/333066
parent1e2744d37cd2ac3438f8f1e6b8aae7c4a6c6b8d6 (diff)
downloadaspectj-62b5e69a857ef64c71c39176d3fadc51c308ea02.tar.gz
aspectj-62b5e69a857ef64c71c39176d3fadc51c308ea02.zip
tidy up after tests finish
Diffstat (limited to 'tests/bugs183/333066')
-rw-r--r--tests/bugs183/333066/Code.classbin0 -> 4190 bytes
-rw-r--r--tests/bugs183/333066/Code.java14
-rw-r--r--tests/bugs183/333066/X.classbin0 -> 2439 bytes
3 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs183/333066/Code.class b/tests/bugs183/333066/Code.class
new file mode 100644
index 000000000..bbf1f1b5a
--- /dev/null
+++ b/tests/bugs183/333066/Code.class
Binary files differ
diff --git a/tests/bugs183/333066/Code.java b/tests/bugs183/333066/Code.java
new file mode 100644
index 000000000..3504589bd
--- /dev/null
+++ b/tests/bugs183/333066/Code.java
@@ -0,0 +1,14 @@
+import java.util.*;
+
+public class Code {
+ public String getString() {
+ Optional<String> dummy = Optional.of("Just a dummy optional");
+ return dummy.orElseThrow(() -> {
+ return new RuntimeException();
+ });
+ }
+}
+
+aspect X {
+ before(): within(!X) {System.out.println(thisJoinPoint);}
+}
diff --git a/tests/bugs183/333066/X.class b/tests/bugs183/333066/X.class
new file mode 100644
index 000000000..c7f90c0f6
--- /dev/null
+++ b/tests/bugs183/333066/X.class
Binary files differ