summaryrefslogtreecommitdiff
path: root/test/files/pos/t3622/test/AsyncTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3622/test/AsyncTask.java')
-rw-r--r--test/files/pos/t3622/test/AsyncTask.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/pos/t3622/test/AsyncTask.java b/test/files/pos/t3622/test/AsyncTask.java
new file mode 100644
index 0000000000..cfcea3fe1a
--- /dev/null
+++ b/test/files/pos/t3622/test/AsyncTask.java
@@ -0,0 +1,5 @@
+package test;
+
+public abstract class AsyncTask<Params, Progress, Result> {
+ protected abstract Result doInBackground(Params... args);
+} \ No newline at end of file