blob: 3645a41734a3dd5214a3341a63aaac514ef06f65 [file] [log] [blame]
// Copyright (c) 2019, 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 java.util;
public class IntSummaryStatisticsConversions {
private IntSummaryStatisticsConversions() {}
public static j$.util.IntSummaryStatistics convert(java.util.IntSummaryStatistics stats) {
throw new Error(
"Java 8+ API desugaring (library desugaring) cannot convert"
+ " to java.util.IntSummaryStatistics");
}
public static java.util.IntSummaryStatistics convert(j$.util.IntSummaryStatistics stats) {
throw new Error(
"Java 8+ API desugaring (library desugaring) cannot convert"
+ " from java.util.IntSummaryStatistics");
}
}