summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/tag-that-dare-not-speak-its-name.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/typeck/tag-that-dare-not-speak-its-name.stderr')
-rw-r--r--tests/ui/typeck/tag-that-dare-not-speak-its-name.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/typeck/tag-that-dare-not-speak-its-name.stderr b/tests/ui/typeck/tag-that-dare-not-speak-its-name.stderr
new file mode 100644
index 000000000..f53abe53b
--- /dev/null
+++ b/tests/ui/typeck/tag-that-dare-not-speak-its-name.stderr
@@ -0,0 +1,14 @@
+error[E0308]: mismatched types
+ --> $DIR/tag-that-dare-not-speak-its-name.rs:11:20
+ |
+LL | let x : char = last(y);
+ | ---- ^^^^^^^ expected `char`, found `Option<_>`
+ | |
+ | expected due to this
+ |
+ = note: expected type `char`
+ found enum `Option<_>`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.