blob: 4016f2ce1f3089e43bb9516a8b50d9165bf645fa [file] [log] [blame]
// "Create Field 'fooMoo'" "true"
class Barr {
private final String s;
private final Foo[] fooMoo;
enum Foo {}
Barr(String s, Foo... foos) {
this.s = s;
this.fooMoo = foos;
}
}