aboutsummaryrefslogtreecommitdiff
path: root/src/test/examples/applymapping044/Main.java
blob: 9d5f5775267a14e03aaed128418288bf9159bf1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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);
  }
}