summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-emitter/highlighting.windows.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/error-emitter/highlighting.windows.stderr22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/ui/error-emitter/highlighting.windows.stderr b/tests/ui/error-emitter/highlighting.windows.stderr
new file mode 100644
index 000000000..11d4125db
--- /dev/null
+++ b/tests/ui/error-emitter/highlighting.windows.stderr
@@ -0,0 +1,22 @@
+error[E0308]: mismatched types
+ --> $DIR/highlighting.rs:26:11
+ |
+LL |  query(wrapped_fn);
+ |  ----- ^^^^^^^^^^ one type is more general than the other
+ |  |
+ |  arguments to this function are incorrect
+ |
+ = note: expected fn pointer `for<'a> fn(Box<(dyn Any + Send + 'a)>) -> Pin<_>`
+ found fn item `fn(Box<(dyn Any + Send + 'static)>) -> Pin<_> {wrapped_fn}`
+note: function defined here
+ --> $DIR/highlighting.rs:15:4
+ |
+LL | fn query(_: fn(Box<(dyn Any + Send + '_)>) -> Pin<Box<(
+ |  ____^^^^^_-
+LL | |  dyn Future<Output = Result<Box<(dyn Any + 'static)>, String>> + Send + 'static
+LL | | )>>) {}
+ | |___-
+
+error: aborting due to 1 previous error
+
+For more information about this error, try `rustc --explain E0308`.