Add example for soft verification slow down test builders
Bug: 187496508
Change-Id: Id5f9d9f749a606e7c2e536ef9c2ada7d623416af
diff --git a/src/test/examplesAndroidApi/softverificationerror/Main.java b/src/test/examplesAndroidApi/softverificationerror/Main.java
new file mode 100644
index 0000000..f2a4376
--- /dev/null
+++ b/src/test/examplesAndroidApi/softverificationerror/Main.java
@@ -0,0 +1,13 @@
+// Copyright (c) 2021, the R8 project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+package com.example.softverificationerror;
+
+public class Main {
+
+ public static void test(android.content.Context context) {
+ ApiCallerInlined.callApi(context);
+ ApiCallerOutlined.callApi(context);
+ }
+}