blob: d458af889554296cccecefce34985dae4b8c98fd [file] [log] [blame]
// 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.
package com.android.tools.r8.accessrelaxation.privatestatic;
import com.android.tools.r8.KeepConstantArguments;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.NeverPropagateValue;
import com.android.tools.r8.NoHorizontalClassMerging;
@NoHorizontalClassMerging
public class BB extends A {
@KeepConstantArguments
@NeverInline
@NeverPropagateValue
private static String blah(int i) {
return "BB::blah(int)";
}
public static String pBlah1() {
return blah(1);
}
public void dump() {
System.out.println(this.foo());
}
}