blob: 436d45b9eedfc94daf6f12e2baf35813ee1393c3 [file] [log] [blame]
// "Add constructor parameter" "true"
class A {
@javax.annotation.Nonnull private final Object field;
A(@javax.annotation.Nonnull Object field, String... strs) {
this.field = field;<caret>
}
}