aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/pin_project/overlapping_lifetime_names.stderr
blob: f87875d87633ff6f029e1aaea23cbd42651ea0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
error[E0263]: lifetime name `'__pin` declared twice in the same scope
 --> $DIR/overlapping_lifetime_names.rs:4:20
  |
3 | / pin_project! { //~ ERROR E0263,E0496
4 | |     pub struct Foo<'__pin, T> {
  | |                    ^^^^^^ declared twice
5 | |         #[pin]
6 | |         field: &'__pin mut T,
7 | |     }
8 | | }
  | |_- previous declaration here

error[E0263]: lifetime name `'__pin` declared twice in the same scope
 --> $DIR/overlapping_lifetime_names.rs:4:20
  |
3 | / pin_project! { //~ ERROR E0263,E0496
4 | |     pub struct Foo<'__pin, T> {
  | |                    ^^^^^^ declared twice
5 | |         #[pin]
6 | |         field: &'__pin mut T,
7 | |     }
8 | | }
  | |_- previous declaration here

error[E0263]: lifetime name `'__pin` declared twice in the same scope
 --> $DIR/overlapping_lifetime_names.rs:4:20
  |
3 | / pin_project! { //~ ERROR E0263,E0496
4 | |     pub struct Foo<'__pin, T> {
  | |                    ^^^^^^ declared twice
5 | |         #[pin]
6 | |         field: &'__pin mut T,
7 | |     }
8 | | }
  | |_- previous declaration here

error[E0496]: lifetime name `'__pin` shadows a lifetime name that is already in scope
 --> $DIR/overlapping_lifetime_names.rs:3:1
  |
3 | / pin_project! { //~ ERROR E0263,E0496
4 | |     pub struct Foo<'__pin, T> {
  | |                    ------ first declared here
5 | |         #[pin]
6 | |         field: &'__pin mut T,
7 | |     }
8 | | }
  | |_^ lifetime `'__pin` already in scope
  |
  = note: this error originates in the macro `$crate::__pin_project_internal` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0496]: lifetime name `'__pin` shadows a lifetime name that is already in scope
 --> $DIR/overlapping_lifetime_names.rs:3:1
  |
3 | / pin_project! { //~ ERROR E0263,E0496
4 | |     pub struct Foo<'__pin, T> {
  | |                    ------ first declared here
5 | |         #[pin]
6 | |         field: &'__pin mut T,
7 | |     }
8 | | }
  | |_^ lifetime `'__pin` already in scope
  |
  = note: this error originates in the macro `$crate::__pin_project_internal` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0263]: lifetime name `'__pin` declared twice in the same scope
 --> $DIR/overlapping_lifetime_names.rs:4:20
  |
3 | / pin_project! { //~ ERROR E0263,E0496
4 | |     pub struct Foo<'__pin, T> {
  | |                    ^^^^^^ declared twice
5 | |         #[pin]
6 | |         field: &'__pin mut T,
7 | |     }
8 | | }
  | |_- previous declaration here