blob: 7483363ef4bf150a17c75188f81146431265b236 [file] [log] [blame]
Søren Gjesseb9e890c2023-04-21 08:58:40 +02001// Copyright (c) 2023, 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 enum_sealed;
6
7public enum Enum {
8 A,
9 B {
10 @Override
11 public String toString() {
12 return "a B";
13 }
14 }
15}