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