You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class C {
public int D;
public C(int d) { D = d; } // no warnings
}
public class C1
{
public int D;
public C1(int d) => D = d; // Warning: Parameter 'd' is never used
}