about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2021-03-07 15:03:46 -0800
committerEsteban Küber <esteban@kuber.com.ar>2021-03-07 15:03:46 -0800
commitaa7ac6e957747c0fc2edae126162bdfd8faff69c (patch)
tree8f0c16367efd250fe3eaeef6bc676e1c0b640cfe /src
parent63fb294a7455b76ecfbef6831410e5362ee9d514 (diff)
downloadrust-aa7ac6e957747c0fc2edae126162bdfd8faff69c.tar.gz
rust-aa7ac6e957747c0fc2edae126162bdfd8faff69c.zip
Remove notes, increase S/N ratio
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/rfc-2497-if-let-chains/feature-gate.stderr3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/ui/rfc-2497-if-let-chains/feature-gate.stderr b/src/test/ui/rfc-2497-if-let-chains/feature-gate.stderr
index 96131b38db9..7364f62c922 100644
--- a/src/test/ui/rfc-2497-if-let-chains/feature-gate.stderr
+++ b/src/test/ui/rfc-2497-if-let-chains/feature-gate.stderr
@@ -333,7 +333,6 @@ error: invalid parentheses around `let` expression in `if let`
 LL |     if (let 0 = 1) {}
    |        ^         ^
    |
-   = note: only supported directly without parentheses in conditions of `if`- and `while`-expressions, as well as in `let` chains within parentheses
 help: `if let` needs to be written without parentheses
    |
 LL |     if let 0 = 1 {}
@@ -345,7 +344,6 @@ error: invalid parentheses around `let` expression in `if let`
 LL |     if (((let 0 = 1))) {}
    |        ^^^         ^^^
    |
-   = note: only supported directly without parentheses in conditions of `if`- and `while`-expressions, as well as in `let` chains within parentheses
 help: `if let` needs to be written without parentheses
    |
 LL |     if let 0 = 1 {}
@@ -581,7 +579,6 @@ error: invalid parentheses around `let` expression in `if let`
 LL |     use_expr!((let 0 = 1));
    |               ^         ^
    |
-   = note: only supported directly without parentheses in conditions of `if`- and `while`-expressions, as well as in `let` chains within parentheses
 help: `if let` needs to be written without parentheses
    |
 LL |     use_expr!(let 0 = 1);