aboutsummaryrefslogtreecommitdiff
path: root/quote/tests/ui/wrong-type-span.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'quote/tests/ui/wrong-type-span.stderr')
-rw-r--r--quote/tests/ui/wrong-type-span.stderr10
1 files changed, 10 insertions, 0 deletions
diff --git a/quote/tests/ui/wrong-type-span.stderr b/quote/tests/ui/wrong-type-span.stderr
new file mode 100644
index 0000000..a6ae8ef
--- /dev/null
+++ b/quote/tests/ui/wrong-type-span.stderr
@@ -0,0 +1,10 @@
+error[E0308]: mismatched types
+ --> $DIR/wrong-type-span.rs:6:20
+ |
+6 | quote_spanned!(span=> #x);
+ | ^^^^ expected struct `proc_macro2::Span`, found &str
+ |
+ = note: expected type `proc_macro2::Span`
+ found type `&str`
+
+For more information about this error, try `rustc --explain E0308`.