aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr171953/test/SecondTestExecutable.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs154/pr171953/test/SecondTestExecutable.java')
-rw-r--r--tests/bugs154/pr171953/test/SecondTestExecutable.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs154/pr171953/test/SecondTestExecutable.java b/tests/bugs154/pr171953/test/SecondTestExecutable.java
new file mode 100644
index 000000000..1743a9728
--- /dev/null
+++ b/tests/bugs154/pr171953/test/SecondTestExecutable.java
@@ -0,0 +1,13 @@
+package test;
+
+public class SecondTestExecutable extends AbstractExecutable {
+
+ public void execute() {
+ // should not happen because of ExecutionAspect prevents execution
+ throw new RuntimeException();
+ }
+
+ public static void main(String[] args) {
+ new SecondTestExecutable().execute();
+ }
+}