Skip to content

Commit

Permalink
Null-forgiving operator
Browse files Browse the repository at this point in the history
- Fix grammar
- Specify semantic restrictions
- Add to precedence table
- Add to MLR group
  • Loading branch information
Nigel-Ecma committed Oct 31, 2024
1 parent 56f724d commit dcd7eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standard/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -1843,7 +1843,7 @@ It is an error to apply the null-forgiving operator more than once to the same e
> *Example*: the following are all invalid:
>
> ```csharp
> var p = q!!; // error: cannot apply the null_forgiving_operator more than once
> var p = q!!; // error: cannot apply the null_forgiving_operator more than once
> var s = ( ( m(t) ! ) )! // error: null_forgiving_operator applied twice to m(t)
> ```
Expand Down

0 comments on commit dcd7eed

Please sign in to comment.