Files
Tagir Valeev 052f30a7f9 [java-intentions] Better preview for create field/constant (IDEA-304744)
GitOrigin-RevId: f14c231ceb20e9fcb20f531a9e4856a75c9a37a7
2022-10-27 14:39:19 +00:00

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;
}
}