diff options
author | Andy Clement <aclement@gopivotal.com> | 2014-08-20 08:02:41 -0700 |
---|---|---|
committer | Andy Clement <aclement@gopivotal.com> | 2014-08-20 08:02:41 -0700 |
commit | 62b5e69a857ef64c71c39176d3fadc51c308ea02 (patch) | |
tree | eb44ee4a239ccd170e685dea02c0afd838cdf080 /tests/bugs183/333066 | |
parent | 1e2744d37cd2ac3438f8f1e6b8aae7c4a6c6b8d6 (diff) | |
download | aspectj-62b5e69a857ef64c71c39176d3fadc51c308ea02.tar.gz aspectj-62b5e69a857ef64c71c39176d3fadc51c308ea02.zip |
tidy up after tests finish
Diffstat (limited to 'tests/bugs183/333066')
-rw-r--r-- | tests/bugs183/333066/Code.class | bin | 0 -> 4190 bytes | |||
-rw-r--r-- | tests/bugs183/333066/Code.java | 14 | ||||
-rw-r--r-- | tests/bugs183/333066/X.class | bin | 0 -> 2439 bytes |
3 files changed, 14 insertions, 0 deletions
diff --git a/tests/bugs183/333066/Code.class b/tests/bugs183/333066/Code.class Binary files differnew file mode 100644 index 000000000..bbf1f1b5a --- /dev/null +++ b/tests/bugs183/333066/Code.class 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 Binary files differnew file mode 100644 index 000000000..c7f90c0f6 --- /dev/null +++ b/tests/bugs183/333066/X.class |