blob: 298c59763f8502facb797e8beef10c547f015a00 [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.naming.overloadaggressively;
import com.android.tools.r8.NeverPropagateValue;
public class B {
volatile int f1 = 8;
volatile Object f2 = "d8";
volatile String f3 = "r8";
@NeverPropagateValue
public int getF1() {
return f1;
}
@NeverPropagateValue
public Object getF2() {
return f2;
}
@NeverPropagateValue
public String getF3() {
return f3;
}
}