blob: a0389e89ad973849b102f48c2790d27a5bed53b1 [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.B;
8import naming044.sub.SubB;
9
10public class Main {
11 public static void main(String[] args) {
12 B.m();
13 SubB.n();
14 A a = new A();
15 B b = new B();
16 b.f(a);
Jinseong Jeonbec05332018-01-09 08:31:34 -080017 AsubB aSubB = new AsubB(3);
18 aSubB.f(a);
19 SubB subB = new SubB(3);
Jinseong Jeon7cec45b2017-10-26 13:14:44 -070020 subB.f(a);
21 }
22}