blob: 4e7fa418f381c2fb9782d11a365c9deae0dbaf7c [file] [log] [blame]
Mads Ager418d1ca2017-05-22 09:35:49 +02001// 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 minification;
5
6public class SubSubClassAB extends SubClassA implements InterfaceB {
7
8 @Override
9 public int functionFromIntToInt(int arg) {
10 System.out.println("SubSubClassAB:functionFromIntToInt");
11 return super.functionFromIntToInt(arg);
12 }
13
14 @Override
15 public int uniqueLittleMethodInB() {
16 System.out.println("SubSubClassAB:uniqueLittleMethodInB");
17 return 0;
18 }
19}