blob: 8fb83042fbf5ec446441a57fea01db0b8502545a [file] [log] [blame]
// "Bind Constructor Parameters to Fields" "true"
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class TestBefore {
public TestBefore(@Nullable String name<caret>, @Nullable String name2) {
super();
}
}