summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/str-as-char.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/inference/str-as-char.fixed')
-rw-r--r--src/test/ui/inference/str-as-char.fixed4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/ui/inference/str-as-char.fixed b/src/test/ui/inference/str-as-char.fixed
index 09f3dec5a..6aea809cb 100644
--- a/src/test/ui/inference/str-as-char.fixed
+++ b/src/test/ui/inference/str-as-char.fixed
@@ -4,5 +4,7 @@
// run-rustfix
fn main() {
- let _: &str = "a"; //~ ERROR mismatched types
+ let _: &str = "a"; //~ ERROR mismatched types
+ let _: &str = "\"\"\""; //~ ERROR character literal may only contain one codepoint
+ let _: &str = "\"\"\""; //~ ERROR character literal may only contain one codepoint
}