blob: ef69bd4f8d2f9709c205d0e0a6ae7db3f1293ee6 [file] [log] [blame]
// "Add constructor parameter" "true"
import org.jetbrains.annotations.*;
class A {
@NotNull private final Object field;
A(@NotNull Object field, String... strs) {
this.field = field;<caret>
}
}