blob: f4eb949b9ff23d33e3b1d2a412fd430ea3a75650 [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.desugaring.interfacemethods.default2;
import java.util.Comparator;
public interface DerivedComparator2<T> extends Comparator<T> {
@Override
default Comparator<T> reversed() {
return this;
}
}