blob: 3df11e47347c547a12ff0ce01aea479578f36b80 [file] [log] [blame]
Jinseong Jeon7cec45b2017-10-26 13:14:44 -07001// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4package applymapping044;
5
6import naming044.A;
7import naming044.sub.SubB;
8
9public class AsubB extends SubB {
Jinseong Jeonbec05332018-01-09 08:31:34 -080010 public AsubB(int f) {
11 super(f);
12 }
13
Jinseong Jeon7cec45b2017-10-26 13:14:44 -070014 public int boo(A a) {
Jinseong Jeonbec05332018-01-09 08:31:34 -080015 return f(a) * f;
Jinseong Jeon7cec45b2017-10-26 13:14:44 -070016 }
17}