blob: 01ec6744256c2257562b14cc2b198035f6674c0f [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;
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());
}
}