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