mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 22:35:40 +07:00
052f30a7f9
GitOrigin-RevId: f14c231ceb20e9fcb20f531a9e4856a75c9a37a7
12 lines
222 B
Java
12 lines
222 B
Java
// "Create field 'fooMoo'" "true-preview"
|
|
class Barr {
|
|
private final String s;
|
|
private final Foo[] fooMoo;
|
|
|
|
enum Foo {}
|
|
|
|
Barr(String s, Foo... foos) {
|
|
this.s = s;
|
|
this.fooMoo = foos;
|
|
}
|
|
} |