From dcd7eed12c4e0e3f5158b5c838f0ff4ab2b90a8d Mon Sep 17 00:00:00 2001 From: Nigel-Ecma Date: Thu, 31 Oct 2024 14:45:07 +1300 Subject: [PATCH] Null-forgiving operator - Fix grammar - Specify semantic restrictions - Add to precedence table - Add to MLR group --- standard/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard/expressions.md b/standard/expressions.md index 3e00d31da..55d1996b7 100644 --- a/standard/expressions.md +++ b/standard/expressions.md @@ -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) > ```