Yohann Roussel | 390942c | 2017-09-06 15:28:39 +0200 | [diff] [blame] | 1 | // 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 | |
| 5 | package desugaringwithandroidjar25; |
| 6 | |
| 7 | import java.util.Comparator; |
| 8 | |
| 9 | public 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 | } |