aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3622/MyAsyncTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3622/MyAsyncTask.java')
-rw-r--r--tests/untried/pos/t3622/MyAsyncTask.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/untried/pos/t3622/MyAsyncTask.java b/tests/untried/pos/t3622/MyAsyncTask.java
new file mode 100644
index 000000000..9ef494705
--- /dev/null
+++ b/tests/untried/pos/t3622/MyAsyncTask.java
@@ -0,0 +1,9 @@
+package test;
+
+public abstract class MyAsyncTask extends AsyncTask<String, String, String> {
+ protected abstract String doInBackground1(String[] args);
+ @Override
+ protected String doInBackground(String... args) {
+ return doInBackground1(new String[]{"dummy"});
+ }
+} \ No newline at end of file