mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
222 B
Java
13 lines
222 B
Java
// "Add 'int' as 3rd parameter to constructor 'E'" "true-preview"
|
|
enum E {
|
|
FIRST("a", "b", 1);
|
|
|
|
private final String a;
|
|
private final String b;
|
|
|
|
E(String a, String b, int i) {
|
|
this.a = a;
|
|
this.b = b;
|
|
}
|
|
}
|