summaryrefslogtreecommitdiffstats
path: root/jack-tests/tests/com/android/jack/shrob/test043/jack/I.java
diff options
context:
space:
mode:
authormikaelpeltier <mikaelpeltier@google.com>2015-05-19 13:26:22 +0200
committerMikael Peltier <mikaelpeltier@google.com>2015-05-21 13:40:51 +0000
commit496b09a8b76757e27d17e29b764b3841bc49867a (patch)
tree91c0f7a28b44b4fd2721c55e0a8bf3dfbc2d66a7 /jack-tests/tests/com/android/jack/shrob/test043/jack/I.java
parentafc3d7afc27f2657bf3eced3d7a3082a707d6e9f (diff)
downloadtoolchain_jack-496b09a8b76757e27d17e29b764b3841bc49867a.tar.gz
toolchain_jack-496b09a8b76757e27d17e29b764b3841bc49867a.tar.bz2
toolchain_jack-496b09a8b76757e27d17e29b764b3841bc49867a.zip
Do not forget to trace implementation methods
- Tracing can forget to keep some methods due to tracing order. Trace a method that is a seed need also to trace implementation of this method for all types that are already kept. Bug: 21023926 Change-Id: I0a0df841b0f7441ddba056ad69a1f506db15afb3 (cherry picked from commit df69c567bb1903bdcf1a39be18a0e52c62709de0)
Diffstat (limited to 'jack-tests/tests/com/android/jack/shrob/test043/jack/I.java')
-rw-r--r--jack-tests/tests/com/android/jack/shrob/test043/jack/I.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/jack-tests/tests/com/android/jack/shrob/test043/jack/I.java b/jack-tests/tests/com/android/jack/shrob/test043/jack/I.java
new file mode 100644
index 00000000..df09f669
--- /dev/null
+++ b/jack-tests/tests/com/android/jack/shrob/test043/jack/I.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2015 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.jack.shrob.test043.jack;
+
+public interface I {
+ int getInt();
+}