Add file missing from last commit
Bug: 68246915
Change-Id: Id6331909d1ee2d7bc2da3f5af0f9f544abc03d49
diff --git a/src/test/java/com/android/tools/r8/shaking/forceproguardcompatibility/TestAnnotation.java b/src/test/java/com/android/tools/r8/shaking/forceproguardcompatibility/TestAnnotation.java
new file mode 100644
index 0000000..0f2f5a4
--- /dev/null
+++ b/src/test/java/com/android/tools/r8/shaking/forceproguardcompatibility/TestAnnotation.java
@@ -0,0 +1,13 @@
+// Copyright (c) 2017, 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.android.tools.r8.shaking.forceproguardcompatibility;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+@Retention(RetentionPolicy.RUNTIME)
+public @interface TestAnnotation {
+ public int value();
+}
\ No newline at end of file