Jinseong Jeon | 7cec45b | 2017-10-26 13:14:44 -0700 | [diff] [blame] | 1 | // 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. |
| 4 | package applymapping044; |
| 5 | |
| 6 | import naming044.A; |
| 7 | import naming044.sub.SubB; |
| 8 | |
| 9 | public class AsubB extends SubB { |
Jinseong Jeon | bec0533 | 2018-01-09 08:31:34 -0800 | [diff] [blame] | 10 | public AsubB(int f) { |
| 11 | super(f); |
| 12 | } |
| 13 | |
Jinseong Jeon | 7cec45b | 2017-10-26 13:14:44 -0700 | [diff] [blame] | 14 | public int boo(A a) { |
Jinseong Jeon | bec0533 | 2018-01-09 08:31:34 -0800 | [diff] [blame] | 15 | return f(a) * f; |
Jinseong Jeon | 7cec45b | 2017-10-26 13:14:44 -0700 | [diff] [blame] | 16 | } |
| 17 | } |