about summary refs log tree commit diff
path: root/src/test/ui/recursion
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2022-12-12 12:26:16 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2022-12-13 09:53:36 +0000
commit2e2a4797a26b0effe15815b403be4ba752cc7a0b (patch)
tree35c22373d4cf4554c3bf45f178be06598c929666 /src/test/ui/recursion
parent063b1675b2ed27948a7821af639a28c1a669d868 (diff)
downloadrust-2e2a4797a26b0effe15815b403be4ba752cc7a0b.tar.gz
rust-2e2a4797a26b0effe15815b403be4ba752cc7a0b.zip
Don't emit empty notes
Diffstat (limited to 'src/test/ui/recursion')
-rw-r--r--src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr b/src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr
index 8aaaa298318..429f0460e89 100644
--- a/src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr
+++ b/src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr
@@ -8,8 +8,6 @@ LL |     let Ok(x) = res;
    = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
 note: `Result<u32, &R<'_>>` defined here
   --> $SRC_DIR/core/src/result.rs:LL:COL
-   |
-   = note: 
 $SRC_DIR/core/src/result.rs:LL:COL: not covered
    = note: the matched value is of type `Result<u32, &R<'_>>`
 help: you might want to use `if let` to ignore the variant that isn't matched