Sebastien Hertz | d04d7ea | 2018-01-04 10:36:52 +0100 | [diff] [blame] | 1 | // 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 | |
| 5 | package staticinlining; |
| 6 | |
| 7 | public 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 Hertz | d04d7ea | 2018-01-04 10:36:52 +0100 | [diff] [blame] | 21 | } |