summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/str-as-char.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/inference/str-as-char.rs')
-rw-r--r--src/test/ui/inference/str-as-char.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/inference/str-as-char.rs b/src/test/ui/inference/str-as-char.rs
deleted file mode 100644
index eaa8d788c..000000000
--- a/src/test/ui/inference/str-as-char.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// When a char literal is used where a str should be,
-// suggest changing to double quotes.
-
-// run-rustfix
-
-fn main() {
- 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
-}