blob: f07ea8faf6d20db38d5e5cedf0df0476dadf6db7 [file] [log] [blame]
Yohann Roussel390942c2017-09-06 15:28:39 +02001// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5package desugaringwithandroidjar25;
6
7import java.util.Comparator;
8
9public class StaticMethodInAndroidJar25 {
10 public static void main(String[] args) throws Exception {
11 Comparator<String> comparing =
12 Comparator.comparing(x -> x, String::compareTo);
13 System.out.println("'a' <> 'b' = " + comparing.compare("a", "b"));
14 System.out.println("'b' <> 'b' = " + comparing.compare("b", "b"));
15 System.out.println("'c' <> 'b' = " + comparing.compare("c", "b"));
16 }
17}