blob: 073d3527e6db0886317156e9d9f41e43348e7f73 [file] [log] [blame]
// Copyright (c) 2016, 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 shaking11;
public class SubclassWithMethod extends SuperClass {
public void aMethod() {
// Intentionally empty.
}
}