blob: 1d7c54e946a29a3f00daddd728a2dbc62f5d9463 [file] [log] [blame]
// Copyright (c) 2020, 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.resolution.packageprivate.a;
import com.android.tools.r8.resolution.packageprivate.PackagePrivateReentryTest.C;
public class D extends C {
@Override
public void foo() {
System.out.println("D.foo");
}
@Override
public void bar() {
System.out.println("D.bar");
}
}