blob: ddbff3bc3aec96d10a96c088580541f2200d878b [file] [log] [blame]
clementbera5379f3d2019-09-23 13:21:32 +02001// Copyright (c) 2019, 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 j$.time;
6
7public class LocalDate {
8 public static LocalDate of(int year, int month, int dayOfMonth) {
9 return null;
10 }
11
12 public int getYear() {
13 return 0;
14 }
15
16 public int getMonthValue() {
17 return 0;
18 }
19
20 public int getDayOfMonth() {
21 return 0;
22 }
23}