diff options
author | Android Build Role Account android-build-prod <android-build-team-robot@google.com> | 2021-04-10 10:01:00 +0000 |
---|---|---|
committer | Android Build Role Account android-build-prod <android-build-team-robot@google.com> | 2021-04-10 10:01:00 +0000 |
commit | 355de8c72fa94523f9feab5f6ba2a7ce2f3701d2 (patch) | |
tree | 7e0d84f19e33712e6a06606ddc6ad43dc6ecc4f0 /test/ProfileTestMultiDex/Main.java | |
parent | ec9a9faabab3dd6f935e14342bac5f70353c22e3 (diff) | |
parent | 8eae3acb300e8a508324811c759f6d16b829a6c8 (diff) |
Snap for 7273026 from 8eae3acb300e8a508324811c759f6d16b829a6c8 to s-keystone-qcom-release
Change-Id: I4e86648fe6d89816fb3fd469d9cc95a4bda8a791
Diffstat (limited to 'test/ProfileTestMultiDex/Main.java')
-rw-r--r-- | test/ProfileTestMultiDex/Main.java | 6 |
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(); } |