]> git.proxmox.com Git - rustc.git/blob - src/test/ui/regions/regions-escape-method.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / regions / regions-escape-method.stderr
1 error[E0495]: cannot infer an appropriate lifetime due to conflicting requirements
2 --> $DIR/regions-escape-method.rs:15:13
3 |
4 LL | s.f(|p| p)
5 | ^
6 |
7 note: first, the lifetime cannot outlive the anonymous lifetime #2 defined on the body at 15:9...
8 --> $DIR/regions-escape-method.rs:15:9
9 |
10 LL | s.f(|p| p)
11 | ^^^^^
12 note: ...so that the expression is assignable
13 --> $DIR/regions-escape-method.rs:15:13
14 |
15 LL | s.f(|p| p)
16 | ^
17 = note: expected `&i32`
18 found `&i32`
19 note: but, the lifetime must be valid for the method call at 15:5...
20 --> $DIR/regions-escape-method.rs:15:5
21 |
22 LL | s.f(|p| p)
23 | ^^^^^^^^^^
24 note: ...so that a type/lifetime parameter is in scope here
25 --> $DIR/regions-escape-method.rs:15:5
26 |
27 LL | s.f(|p| p)
28 | ^^^^^^^^^^
29
30 error: aborting due to previous error
31
32 For more information about this error, try `rustc --explain E0495`.