blob: 8a4d42af5128dba192e65f4d83c01cd5a4b0e9d7 [file] [log] [blame]
// 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 enum_sealed;
public class Main {
public static void main(String[] args) {
System.out.println(Enum.A);
System.out.println(Enum.B);
}
}