blob: 9d5f5775267a14e03aaed128418288bf9159bf1c [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 applymapping044;
import naming044.A;
import naming044.B;
import naming044.sub.SubB;
public class Main {
public static void main(String[] args) {
B.m();
SubB.n();
A a = new A();
B b = new B();
b.f(a);
AsubB subB = new AsubB();
subB.f(a);
}
}