summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/region-bounds-on-objects-and-type-parameters.stderr
blob: 2ec2ca49b11426f961472c34f632a6290a967f06 (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
error[E0226]: only a single explicit lifetime bound is permitted
  --> $DIR/region-bounds-on-objects-and-type-parameters.rs:21:26
   |
LL |     z: Box<dyn Is<'a>+'b+'c>,
   |                          ^^

error[E0478]: lifetime bound not satisfied
  --> $DIR/region-bounds-on-objects-and-type-parameters.rs:21:8
   |
LL |     z: Box<dyn Is<'a>+'b+'c>,
   |        ^^^^^^^^^^^^^^^^^^^^^
   |
note: lifetime parameter instantiated with the lifetime `'b` as defined here
  --> $DIR/region-bounds-on-objects-and-type-parameters.rs:11:15
   |
LL | struct Foo<'a,'b,'c> {
   |               ^^
note: but lifetime parameter must outlive the lifetime `'a` as defined here
  --> $DIR/region-bounds-on-objects-and-type-parameters.rs:11:12
   |
LL | struct Foo<'a,'b,'c> {
   |            ^^

error[E0392]: parameter `'c` is never used
  --> $DIR/region-bounds-on-objects-and-type-parameters.rs:11:18
   |
LL | struct Foo<'a,'b,'c> {
   |                  ^^ unused parameter
   |
   = help: consider removing `'c`, referring to it in a field, or using a marker such as `PhantomData`

error: aborting due to 3 previous errors

Some errors have detailed explanations: E0226, E0392, E0478.
For more information about an error, try `rustc --explain E0226`.