blob: 5ca3cca9aa98ba6ae0a72c7ebbd415ca08d26599 [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.static0;
import java.util.Comparator;
public class TestMainStatic0 {
public static void main(String[] args) {
System.out.println("TestMainStatic0::test()");
System.out.println(args[0]);
if (args[0].equals("true")) {
Comparator<String> comparator = Comparator.naturalOrder();
System.out.println(comparator.compare("A", "B"));
System.out.println(comparator.compare("B", "B"));
System.out.println(comparator.compare("B", "C"));
}
}
}