summaryrefslogtreecommitdiffstats
path: root/tests/ui/rust-2018/edition-lint-infer-outlives-macro.stderr
blob: 734ae687978936e022a177b7be164aee75d60f4a (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:27:18
   |
LL | struct Bar<'a, 'b: 'a> {
   |                  ^^^^ help: remove this bound
   |
note: the lint level is defined here
  --> $DIR/edition-lint-infer-outlives-macro.rs:5:9
   |
LL | #![deny(explicit_outlives_requirements)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:32:24
   |
LL | struct BarWhere<'a, 'b> where 'b: 'a {
   |                        ^^^^^^^^^^^^^ help: remove this bound

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:41:30
   |
LL |             struct Foo<'a, 'b: 'a>(&'a &'b ());
   |                              ^^^^ help: remove this bound
...
LL |     m!('b: 'a);
   |     ---------- in this macro invocation
   |
   = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:43:44
   |
LL |             struct Bar<'a, 'b>(&'a &'b ()) where 'b: 'a;
   |                                            ^^^^^^^^^^^^ help: remove this bound
...
LL |     m!('b: 'a);
   |     ---------- in this macro invocation
   |
   = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:45:61
   |
LL |             struct Baz<'a, 'b>(&'a &'b ()) where (): Sized, 'b: 'a;
   |                                                             ^^^^^^ help: remove this bound
...
LL |     m!('b: 'a);
   |     ---------- in this macro invocation
   |
   = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:55:30
   |
LL |             struct Foo<'a, $b: 'a>(&'a &$b ());
   |                              ^^^^ help: remove this bound
...
LL |     m!('b: 'a);
   |     ---------- in this macro invocation
   |
   = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:57:44
   |
LL |             struct Bar<'a, $b>(&'a &$b ()) where $b: 'a;
   |                                            ^^^^^^^^^^^^ help: remove this bound
...
LL |     m!('b: 'a);
   |     ---------- in this macro invocation
   |
   = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:59:61
   |
LL |             struct Baz<'a, $b>(&'a &$b ()) where (): Sized, $b: 'a;
   |                                                             ^^^^^^ help: remove this bound
...
LL |     m!('b: 'a);
   |     ---------- in this macro invocation
   |
   = note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:114:31
   |
LL |             struct Foo<$a, $b $colon $a>(&$a &$b ());
   |                               ^^^^^^^^^ help: remove this bound

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:126:31
   |
LL |             struct Foo<$a, $b $colon $a>(&$a &$b ());
   |                               ^^^^^^^^^ help: remove this bound

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:128:50
   |
LL |             struct Bar<$a, $b>(&$a &$b ()) where $b $colon $a;
   |                                                  ^^^^^^^^^^^^ help: remove this bound

error: outlives requirements can be inferred
  --> $DIR/edition-lint-infer-outlives-macro.rs:130:61
   |
LL |             struct Baz<$a, $b>(&$a &$b ()) where (): Sized, $b $colon $a;
   |                                                             ^^^^^^^^^^^^ help: remove this bound

error: aborting due to 12 previous errors