blob: 54528e973917cbaa1715cbc81469d8b3e6d9a207 [file] [log] [blame]
Sebastien Hertzd04d7ea2018-01-04 10:36:52 +01001// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5package staticinlining;
6
7public class Sub2 extends SuperClass {
8
9 public static void doNotInlineMe() {
10 System.out.println("Do not inline me 1");
11 System.out.println("Do not inline me 2");
12 System.out.println("Do not inline me 3");
13 System.out.println("Do not inline me 4");
14 System.out.println("Do not inline me 5");
15 System.out.println("Do not inline me 6");
16 System.out.println("Do not inline me 7");
17 System.out.println("Do not inline me 8");
18 System.out.println("Do not inline me 9");
19 System.out.println("Do not inline me 10");
20 }
Sebastien Hertzd04d7ea2018-01-04 10:36:52 +010021}