summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/char-as-str-single.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/inference/char-as-str-single.fixed')
-rw-r--r--tests/ui/inference/char-as-str-single.fixed9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/inference/char-as-str-single.fixed b/tests/ui/inference/char-as-str-single.fixed
index bab1854dc..1621a279f 100644
--- a/tests/ui/inference/char-as-str-single.fixed
+++ b/tests/ui/inference/char-as-str-single.fixed
@@ -10,3 +10,12 @@ fn main() {
let _: char = '人'; //~ ERROR mismatched types
let _: char = '\''; //~ ERROR mismatched types
}
+
+// regression test for https://github.com/rust-lang/rust/issues/109586
+#[allow(dead_code)]
+fn convert_c_to_str(c: char) {
+ match c {
+ 'A' => {} //~ ERROR mismatched types
+ _ => {}
+ }
+}