blob: 42620f62a955160b191afb1cbbb9ad51dbf98a2d [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 classmerging;
public abstract class GenericAbstractClass<T> {
public abstract T method();
public T otherMethod() {
return null;
}
}