| // 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 backport; | 
 |  | 
 | import java.util.NoSuchElementException; | 
 | import java.util.OptionalLong; | 
 |  | 
 | public final class OptionalLongBackportJava10Main { | 
 |  | 
 |   public static void main(String[] args) { | 
 |     testOrElseThrow(); | 
 |   } | 
 |  | 
 |   private static void testOrElseThrow() { | 
 |     OptionalLong present = OptionalLong.of(2L); | 
 |     assertEquals(2L, present.orElseThrow()); | 
 |  | 
 |     OptionalLong absent = OptionalLong.empty(); | 
 |     try { | 
 |       throw new AssertionError(absent.orElseThrow()); | 
 |     } catch (NoSuchElementException expected) { | 
 |     } | 
 |   } | 
 |  | 
 |   private static void assertEquals(Object expected, Object actual) { | 
 |     if (expected != actual && !expected.equals(actual)) { | 
 |       throw new AssertionError("Expected <" + expected + "> but was <" + actual + ">"); | 
 |     } | 
 |   } | 
 | } |