Skip to content
Merged
Changes from 3 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
2 changes: 2 additions & 0 deletions docs/coding-guidelines/breaking-change-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ successfully bind to that overload, if simply passing an `int` value. However, i

Definite assignment rules allow use of uninitialized variables so long as the variable type is a stateless struct. If the struct is made stateful, code could now end up with uninitialized data. This is both potentially a source breaking and binary breaking change.

* Adding a `ref` (byref), object reference, or generic type parameter-based field to a value type that formerly had none of those field kinds. If the value type already contains at least one such field, adding another is non-breaking.

### Signatures
✓ **Allowed**
* Adding `params` to a parameter
Expand Down