javatests/de/jflex/testcase/dot_newline/Interval.java (9 lines of code) (raw):

/* * Copyright 2020, Google, LLC. * SPDX-License-Identifier: BSD-3-Clause */ package de.jflex.testcase.dot_newline; public class Interval { int start; int end; Interval(int start, int end) { this.start = start; this.end = end; } }