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
/// <summary>
/// Text
/// </summary>
/// <param name="par">Text</param>
record struct RS ( int par );
/// <summary>
/// Text
/// </summary>
/// <param name="prop">Text</param>
private class C ( int prop )
{
int Prop { get; init; } = prop;
}
Gives:
Warning (active) RCS1263 Parameter 'par' could not be found
Warning (active) RCS1263 Parameter 'prop' could not be found