summaryrefslogtreecommitdiff
path: root/test/ProfileTestMultiDex/Main.java
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2021-05-17 12:29:23 -0700
committerLinux Build Service Account <lnxbuild@localhost>2021-05-17 12:29:23 -0700
commit24d46dfa2ce61122a1067ec35c7a66eac3a48192 (patch)
treefe9a7823bbbc05a71e01c332fe66882e0a2f0d0e /test/ProfileTestMultiDex/Main.java
parent20abb7fa364b5fb9e57c7b6257cab471198ff285 (diff)
parent2d48c3f2b6e0c5216325ce45dc6d72905f9c013f (diff)
Merge 2d48c3f2b6e0c5216325ce45dc6d72905f9c013f on remote branch
Change-Id: If74afba223134cc2b0275db105559a51c29a9024
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();
}