blob: cdac2f3d0b30fb72840911996e679c3854c3ab5d [file] [log] [blame]
// Copyright (c) 2018, 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.singletarget.one;
public abstract class AbstractSubClass extends AbstractTopClass {
@Override
public void singleShadowingOverride() {
System.out.println(AbstractSubClass.class.getCanonicalName());
}
}