]> git.proxmox.com Git - rustc.git/blob - src/test/ui/regions/regions-fn-subtyping-return-static-fail.stderr
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / ui / regions / regions-fn-subtyping-return-static-fail.stderr
1 error[E0308]: mismatched types
2 --> $DIR/regions-fn-subtyping-return-static-fail.rs:48:12
3 |
4 LL | want_G(baz);
5 | ^^^ one type is more general than the other
6 |
7 = note: expected fn pointer `for<'cx> fn(&'cx S) -> &'static S`
8 found fn pointer `for<'r> fn(&'r S) -> &'r S`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.