summaryrefslogtreecommitdiff
path: root/test/files/pos/t3622/test/MyAsyncTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3622/test/MyAsyncTask.java')
-rw-r--r--test/files/pos/t3622/test/MyAsyncTask.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t3622/test/MyAsyncTask.java b/test/files/pos/t3622/test/MyAsyncTask.java
new file mode 100644
index 0000000000..9ef4947052
--- /dev/null
+++ b/test/files/pos/t3622/test/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