| // Copyright (c) 2017, 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. |
| import inlining.CheckDiscarded; |
| public class PublicClass { |
| protected static String protectedMethod() { |
| static String callsProtectedMethod() { |
| return protectedMethod(); |
| static String callsProtectedMethod2() { |
| return protectedMethod(); |
| public static String callsProtectedMethod3() { |
| return protectedMethod(); |
| static String packagePrivateMethod() { |
| static int readsPackagePrivateField() { |
| return PackagePrivateClass.aField; |
| public static int alsoReadsPackagePrivateField() { |
| return PackagePrivateClass.aField; |
| public static String callsPackagePrivateMethod() { |
| return packagePrivateMethod(); |
| public static String alsoCallsPackagePrivateMethod() { |
| return packagePrivateMethod(); |
| public static void callMeToPreventInling() { |
| // Call it three times so it does not get inlined. |