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:00:36 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-04-02 01:00:36 +0000
commit1468067e842e7a2b56e7ad64396fd46db0e3e684 (patch)
tree49cd6841e3ebe25574b1844a69194557fc57650f /test/ProfileTestMultiDex/Main.java
parent5aacda744106b82f2cb5029c2e9f006b0385b3c1 (diff)
parentca31f11e61e19d07910a61240fddb656c1ff6edc (diff)
Snap for 7253016 from ca31f11e61e19d07910a61240fddb656c1ff6edc to sc-d1-release
Change-Id: I237853ff051a74ca81fd5418816db521b2beaf61
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 a84cb98543d..98d4d962818 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();
}