blob: 7d457f162b57e4b0cabe8e368e89b5521d65e0f2 [file] [log] [blame]
// "Bind Constructor Parameters to Fields" "true"
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class TestBefore {
@Nullable
private final String myName;
@Nullable
private final String myName2;
public TestBefore(@Nullable String name, @Nullable String name2) {
super();
myName = name;
myName2 = name2;
}
}