]> git.proxmox.com Git - rustc.git/blob - src/test/ui/regions/regions-trait-1.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / regions / regions-trait-1.stderr
1 error[E0308]: method not compatible with trait
2 --> $DIR/regions-trait-1.rs:16:5
3 |
4 LL | fn get_ctxt(&self) -> &'a Ctxt {
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
6 |
7 = note: expected fn pointer `fn(&HasCtxt<'a>) -> &Ctxt`
8 found fn pointer `fn(&HasCtxt<'a>) -> &'a Ctxt`
9 note: the lifetime `'a` as defined on the impl at 12:6...
10 --> $DIR/regions-trait-1.rs:12:6
11 |
12 LL | impl<'a> GetCtxt for HasCtxt<'a> {
13 | ^^
14 note: ...does not necessarily outlive the anonymous lifetime #1 defined on the method body at 16:5
15 --> $DIR/regions-trait-1.rs:16:5
16 |
17 LL | / fn get_ctxt(&self) -> &'a Ctxt {
18 LL | | self.c
19 LL | | }
20 | |_____^
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0308`.