Mathias Rav | 6603649 | 2018-05-25 10:05:21 +0200 | [diff] [blame] | 1 | // 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. | ||||
4 | package abstractmethodremoval.b; | ||||
5 | |||||
6 | import abstractmethodremoval.a.Public; | ||||
7 | |||||
8 | public class Impl2 extends Public { | ||||
9 | @Override | ||||
10 | public void foo(int i) { | ||||
11 | System.out.println("Impl2.foo(" + i + ")"); | ||||
12 | } | ||||
13 | } |