summaryrefslogtreecommitdiff
path: root/test/ProfileTestMultiDex/Main.java
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-04-02 01:05:17 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-04-02 01:05:17 +0000
commit16b9b1f7ef4819ce37aff98eabedc087a9d5ecce (patch)
tree49cd6841e3ebe25574b1844a69194557fc57650f /test/ProfileTestMultiDex/Main.java
parent91324e6dfa365bf133cd7134d0dc260fcfbd9c56 (diff)
parentca31f11e61e19d07910a61240fddb656c1ff6edc (diff)
Snap for 7253016 from ca31f11e61e19d07910a61240fddb656c1ff6edc to sc-release
Change-Id: Ibcf2506290648692c964f38dbdd14f731a0342a6
Diffstat (limited to 'test/ProfileTestMultiDex/Main.java')
-rw-r--r--test/ProfileTestMultiDex/Main.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ProfileTestMultiDex/Main.java b/test/ProfileTestMultiDex/Main.java
index a84cb98543..98d4d96281 100644
--- a/test/ProfileTestMultiDex/Main.java
+++ b/test/ProfileTestMultiDex/Main.java
@@ -72,6 +72,12 @@ class TestInline {
}
}
+class TestInlineSubtype extends TestInline {
+ public void foobar() {
+ this.inlineMonomorphic(new SubA());
+ }
+}
+
abstract class Secret {
abstract int getIdentity();
}