Desugared library: Partial desugaring of new time apis

Change-Id: Iff5961794841ec6ef64e828f5109468e48c3b74d
diff --git a/src/test/examplesJava9/newtime/NewTimeMain.java b/src/test/examplesJava9/newtime/NewTimeMain.java
new file mode 100644
index 0000000..ab28a4d
--- /dev/null
+++ b/src/test/examplesJava9/newtime/NewTimeMain.java
@@ -0,0 +1,22 @@
+// Copyright (c) 2023, 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 newtime;
+
+import java.time.Clock;
+import java.time.LocalDate;
+import java.time.LocalTime;
+import java.time.OffsetTime;
+import java.time.ZoneId;
+import java.time.ZoneOffset;
+
+public class NewTimeMain {
+
+  public static void main(String[] args) {
+    Clock utc = Clock.tickMillis(ZoneId.of("UTC"));
+    System.out.println(utc.getZone());
+    OffsetTime ot = OffsetTime.of(LocalTime.NOON, ZoneOffset.UTC);
+    System.out.println(ot.toEpochSecond(LocalDate.MIN));
+  }
+}