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
SA1642 is a contentious rule (but important for consistency of docs). Thus, avoiding false positives is a really good thing. Unfortunately, it fails to do that on a record struct. It seems to think that is a "class" and the standard text should include "class" even though it is a struct. (In most other cases I've found it seems to get it right and handles things correctly (A struct gets 'struct' in the standard text and a class gets 'class'). the newish 'record' keyword seems to be throwing things off.