aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3622/AsyncTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3622/AsyncTask.java')
-rw-r--r--tests/untried/pos/t3622/AsyncTask.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/untried/pos/t3622/AsyncTask.java b/tests/untried/pos/t3622/AsyncTask.java
new file mode 100644
index 000000000..cfcea3fe1
--- /dev/null
+++ b/tests/untried/pos/t3622/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