Files

10 lines
203 B
Java

// "Add constructor parameter" "true"
import org.jetbrains.annotations.*;
class A {
@Nullable private final Object field;
A(@Nullable Object field, String... strs) {
this.field = field;
}
}