blob: 50fa633abac3fcd18a776bd208e544275ad84f30 [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 com.android.tools.r8.graph.invokesuper;
public class SubLevel1 extends Super {
@Override
public void superMethod() {
System.out.println("superMethod in SubLevel1");
}
public void subLevel1Method() {
System.out.println("subLevel1Method in SubLevel1");
}
public void otherSuperMethod() {
System.out.println("otherSuperMethod in SubLevel1");
}
public void callOtherSuperMethod() {
System.out.print("From SubLevel1: ");
super.otherSuperMethod();
}
}