Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class Program
{
public int scale;

public Program(int scale)
private Program(int scale)
{
this.scale = scale;
}
Expand Down
2 changes: 1 addition & 1 deletion src/tests/JIT/Methodical/Arrays/misc/arrres.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Test
public bool m_die;
private static Test[] s_arr = new Test[50];

public Test(int indx) { _indx = indx; }
private Test(int indx) { _indx = indx; }

internal virtual void CheckValid()
{
Expand Down
2 changes: 1 addition & 1 deletion src/tests/JIT/opt/Inline/tests/Inline_NewObj.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class MainApp_Inline
{
private int _v;

public MainApp_Inline(int i)
private MainApp_Inline(int i)
{
switch (i)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public UserException4(int id) : base(id)
public class RethrowException {
private int ThreadId;

public RethrowException(int id){
private RethrowException(int id){
ThreadId = id;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public UserException4(int id){
public class HandlerException {
private int ThreadId;

public HandlerException(int id){
private HandlerException(int id){
ThreadId = id;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public UserException(int id){
public class MultipleException {
private int ThreadId;

public MultipleException(int id){
private MultipleException(int id){
ThreadId = id;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public UserException4(int id){
public class NestedException {
private int ThreadId;

public NestedException(int id){
private NestedException(int id){
ThreadId = id;
}

Expand Down