mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 08:27:11 +07:00
GitOrigin-RevId: f14c231ceb20e9fcb20f531a9e4856a75c9a37a7
11 lines
197 B
Java
11 lines
197 B
Java
// "Create field 'fooMoo'" "true-preview"
|
|
class Barr {
|
|
private final String s;
|
|
|
|
enum Foo {}
|
|
|
|
Barr(String s, Foo... foos) {
|
|
this.s = s;
|
|
this.foo<caret>Moo = foos;
|
|
}
|
|
} |