| // Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| public static void main(String[] args) { |
| private static void run(int i) { |
| // Three invocations of each method to avoid inlining. |
| i % 2 == 0 ? getOptions(i % 3) : i % 5 == 0 ? getOptions(i % 7) : getOptions(i % 11); |
| private static Base make(Options o, int i) { |
| return new DerivedUnused(); |
| return o.dummy ? new Derived1() : new Derived2(); |
| private static Options getOptions(int i) { |
| Options o = new Options(); |
| private static void print(Base b) { |
| System.out.println(b.getMessage()); |