blob: 175ae8c494fc733d145c64735cccc35c5f17b1dd [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 naming001;
public class G implements H {
@Override
public void m() {
}
public static void main(String[] args) {
H i = new G();
i.m();
}
}