blob: a6c40fff6270a026b17b192041ac33fedee17102 [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.NeverInline;
import com.android.tools.r8.NeverPropagateValue;
import com.android.tools.r8.NoHorizontalClassMerging;
@NoHorizontalClassMerging
public class BB extends A {
@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());
}
}