blob: 9843c7b48592e7b4265b17f690bacd122e2c689f [file] [log] [blame]
// 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.
package uniquemembernames;
public abstract class BaseCls {
protected int a;
protected double f2;
protected abstract int a();
protected int foo() {
return a * (int) f2;
}
protected double bar() {
return a * f2;
}
}