blob: a92e2a181817847beb424f35affdd6af88af9e5c [file] [log] [blame]
Mathias Rav66036492018-05-25 10:05:21 +02001// Copyright (c) 2018, 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 abstractmethodremoval.b;
5
6import abstractmethodremoval.a.Public;
7
8public class Impl2 extends Public {
9 @Override
10 public void foo(int i) {
11 System.out.println("Impl2.foo(" + i + ")");
12 }
13}