Files
2023-03-01 18:06:07 +00:00

7 lines
86 B
Java

// "Cast argument to 'byte'" "true-preview"
enum E {
A((byte) 1);
E(byte b) {}
}