about summary refs log tree commit diff
path: root/src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-08-09 13:51:33 +0000
committerbors <bors@rust-lang.org>2022-08-09 13:51:33 +0000
commit6d3f1beae1720055e5a30f4dbe7a9e7fb810c65e (patch)
tree0f4964a0d282836bc2cd67e08c00133fe6f85a52 /src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed
parentcc4dd6fc9f1a5c798df269933c7e442b79661a86 (diff)
parent467e7aae0f09ec4a42e6c3ea45aa897637265d49 (diff)
Auto merge of #100318 - Dylan-DPC:rollup-18tzp6q, r=Dylan-DPC
Rollup of 7 pull requests

Successful merges:

 - #96478 (Implement `#[rustc_default_body_unstable]`)
 - #99787 (Rustdoc-Json: Document HRTB's on DynTrait)
 - #100181 (add method to get the mutability of an AllocId)
 - #100221 (Don't document impossible to call default trait items on impls)
 - #100228 (Don't ICE while suggesting updating item path.)
 - #100301 (Avoid `&str` to `String` conversions)
 - #100305 (Suggest adding an appropriate missing pattern excluding comments)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed')
-rw-r--r--src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed b/src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed
new file mode 100644
index 00000000000..b28dce88105
--- /dev/null
+++ b/src/test/ui/pattern/suggest-adding-appropriate-missing-pattern-excluding-comments.fixed
@@ -0,0 +1,10 @@
+// run-rustfix
+
+fn main() {
+    match Some(1) { //~ ERROR non-exhaustive patterns: `None` not covered
+        Some(1) => {}
+        // hello
+        Some(_) => {}
+        None => todo!()
+    }
+}