blob: f723423d9c677629ccaa364b94505e9d5ddf1689 [file] [log] [blame]
Jinseong Jeond44a7682017-08-08 11:53:05 -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 naming044;
5
6public class B {
7 public static int m() {
8 return A.f;
9 }
Jinseong Jeon7cec45b2017-10-26 13:14:44 -070010 public int f(A a) {
11 return a.f;
12 }
Jinseong Jeond44a7682017-08-08 11:53:05 -070013}