aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t2296c/Action.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t2296c/Action.java')
-rw-r--r--tests/pending/run/t2296c/Action.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/pending/run/t2296c/Action.java b/tests/pending/run/t2296c/Action.java
new file mode 100644
index 000000000..4a6b69a5b
--- /dev/null
+++ b/tests/pending/run/t2296c/Action.java
@@ -0,0 +1,21 @@
+package bug.action;
+
+import bug.Global;
+
+public abstract class Action {
+ protected Global m_glob;
+
+ public Action(Global glob0) {
+ m_glob = glob0;
+ }
+
+ public Action() {
+ this(null);
+ }
+
+ public abstract void run(int v);
+
+ public void setGlobal(Global g) {
+ m_glob = g;
+ }
+}