summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr')
-rw-r--r--src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr b/src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr
new file mode 100644
index 000000000..26f47eb68
--- /dev/null
+++ b/src/test/ui/closure-expected-type/expect-fn-supply-fn.stderr
@@ -0,0 +1,51 @@
+error: lifetime may not live long enough
+ --> $DIR/expect-fn-supply-fn.rs:16:49
+ |
+LL | fn expect_free_supply_free_from_fn<'x>(x: &'x u32) {
+ | -- lifetime `'x` defined here
+...
+LL | with_closure_expecting_fn_with_free_region(|x: fn(&'x u32), y| {});
+ | ^
+ | |
+ | has type `fn(&'1 u32)`
+ | requires that `'1` must outlive `'x`
+
+error: lifetime may not live long enough
+ --> $DIR/expect-fn-supply-fn.rs:16:49
+ |
+LL | fn expect_free_supply_free_from_fn<'x>(x: &'x u32) {
+ | -- lifetime `'x` defined here
+...
+LL | with_closure_expecting_fn_with_free_region(|x: fn(&'x u32), y| {});
+ | ^ requires that `'x` must outlive `'static`
+
+error[E0308]: mismatched types
+ --> $DIR/expect-fn-supply-fn.rs:32:49
+ |
+LL | with_closure_expecting_fn_with_free_region(|x: fn(&u32), y| {});
+ | ^ one type is more general than the other
+ |
+ = note: expected fn pointer `for<'r> fn(&'r u32)`
+ found fn pointer `fn(&u32)`
+
+error[E0308]: mismatched types
+ --> $DIR/expect-fn-supply-fn.rs:39:50
+ |
+LL | with_closure_expecting_fn_with_bound_region(|x: fn(&'x u32), y| {});
+ | ^ one type is more general than the other
+ |
+ = note: expected fn pointer `fn(&'x u32)`
+ found fn pointer `for<'r> fn(&'r u32)`
+
+error[E0308]: mismatched types
+ --> $DIR/expect-fn-supply-fn.rs:48:50
+ |
+LL | with_closure_expecting_fn_with_bound_region(|x: Foo<'_>, y| {
+ | ^ one type is more general than the other
+ |
+ = note: expected fn pointer `fn(&u32)`
+ found fn pointer `for<'r> fn(&'r u32)`
+
+error: aborting due to 5 previous errors
+
+For more information about this error, try `rustc --explain E0308`.