blob: 7a21412e3f33d51e3b09ac6e072170ff701915c0 [file] [log] [blame]
// Copyright (c) 2020, 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 records;
public class UnusedRecordField {
Record unusedInstanceField;
void printHello() {
System.out.println("Hello!");
}
public static void main(String[] args) {
new UnusedRecordField().printHello();
}
}